gpt4 book ai didi

html - 单选按钮 css 上的背景图像

转载 作者:行者123 更新时间:2023-11-28 07:45:18 25 4
gpt4 key购买 nike

我在单选按钮上添加背景图片。但我的问题是图像未选中或单击单选按钮(背景图像)。

这是我的代码

.form-group input[type="radio"] {
display: none;
}
.gender input[type="radio"] + label::after {
background:url('img/male.png') no-repeat -7px -81px;
width: 28px;
height: 56px; }
.gender input[type="radio"]:checked + label::before {
background:url('img/m-f-icon.png') no-repeat;
width: 28px;
height: 56px;
display: inline-block;
position: relative;
content: ' ';
margin-right: 10px;
cursor: pointer;
background-position-x: -45px;
}
<div class="form-group gender">
<label class="control-label col-xs-2">I'm a</label>
<div class="col-xs-1">
<input type="radio" class="male" name="genderRadios" value="male">
<label class="radio-inline gender"></label>
</div>
<div class="col-xs-1">
<input type="radio" class="female" name="genderRadios" value="female">
<label class="radio-inline gender"></label>
</div>
</div>

请告诉我任何解决方案。

最佳答案

请在下面找到我放在一起的演示,这是您应该使用的正确结构,并在与相关单选按钮匹配的每个标签上指定适当的 for。您可以为您选择的背景图片切换背景颜色。

JSFiddle:

https://jsfiddle.net/kdrh56md/

关于html - 单选按钮 css 上的背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30729850/

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