Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 html 和 css 在 Weebly 中设置默认选中的单选按钮?我正在尝试做这样的事情:
.wsite-form-radio-container input { checked: "checked"; }
我不知道 Weebly 中的选项是什么,但对于默认检查,您只能使用 HTML。
<input type="radio" checked>Blue<br> <input type="radio">Red
请注意,我添加checked了蓝色的。这使其默认选中。
checked
要为选中的单选按钮设置样式,您可以使用 CSS。
input:checked { .... }
只需将“已检查”添加到输入标签,如下所示:
<input type="radio" checked>