如何使用html和css在Weebly中默认选中单选按钮? 我正试图做这样的事情:
.wsite-form-radio-container input {
checked: "checked";
}
答案 0 :(得分:1)
我不知道Weebly的选项是什么,但对于默认检查,您可以仅使用HTML 。
<input type="radio" checked>Blue<br>
<input type="radio">Red
请注意,我将checked
添加到蓝色的那个。这使它在默认情况下被检查。
要设置选中的单选按钮,您可以使用CSS 。
input:checked {
....
}
答案 1 :(得分:0)
只需将'checked'添加到输入标记中,如下所示:
<input type="radio" checked>