gpt4 book ai didi

html - 如何在单选窗体中改变颜色

转载 作者:行者123 更新时间:2023-11-28 17:29:34 26 4
gpt4 key购买 nike

我有以下由两个单选按钮组成的表单。
我可以通过 CSS 使类型具有我想要的颜色,但下面的 male 和 female 值仍为白色,CSS 没有改变它们的颜色。

<div class="form-title-radiobuttons">Type</div>
<input class="form-title-radiobuttons" type="radio" name="type" value="male" checked> Male<br>
<input class="form-title-radiobuttons" type="radio" name="type" value="female"> Female<br><br />
.form-title-radiobuttons {
margin-bottom:10px;
color: #725129;
text-shadow: #fdf2e4 0 1px 0;
}

最佳答案

因为您要关闭 </div>已经,在包含 input 之前和文字。颜色范围仅针对Type .同时添加 <label>标签会给你很多单选按钮的可点击区域。这应该有效:

.form-title-radiobuttons {
margin-bottom:10px;
color: #725129;
text-shadow: #fdf2e4 0 1px 0;
}
<div class="form-title-radiobuttons">Type<br>
<label><input class="form-title-radiobuttons" type="radio" name="type" value="male" checked> Male</label><br>
<label><input class="form-title-radiobuttons" type="radio" name="type" value="female"> Female</label><br><br />
</div>

关于html - 如何在单选窗体中改变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37324850/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com