gpt4 book ai didi

html - 单选按钮 CSS3 - 自定义

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

我正在尝试在 bootstrap 上自定义单选按钮,但它不起作用,当我在纯 HTML 中尝试外部 bootstrap 环境时它有效,下面是我正在使用的 HTML 代码和 CSS

<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
My Current AMP Policies
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
Financial Planning and Retirement Advice
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios3" value="option3">
LifeCover
</label>
</div>

CSS

.newradio input[type=radio] {display: none;}
.newradio label {
display: inline-block;
cursor: pointer;
position: relative;
padding-left: 25px;
margin-right: 15px;
font-size: 13px;
}
.newradio label:before {
content: "";
display: inline-block;
width: 14px;
height: 14px;
border-radius: 7px;
margin-right: 10px;
position: absolute;
left: 0;
bottom: 3px;
background-color: #fff;
border:solid 1px #bcb882;
}
.newradio input[type=radio]:checked + .newradio label:before {
content: "";
background: url(../../Content/images/radio-check.png);
display: inline-block;
}

.newradio 的原因是我使用那个 div 作为上面给定 HTML 的父类,我正在正确显示我的 radio 但是检查状态(图像 radio 检查)没有显示,我尝试使用颜色更改背景图像,但这也不起作用。

有没有人有在 bootstrap 中自定义单选按钮的经验?请指导

马诺杰索尼

最佳答案

您需要找到 bootstrap css 类并覆盖它。或者在 css 中使用 ID 而不是类。如果这也不起作用,请尝试 !important。

关于html - 单选按钮 CSS3 - 自定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30606023/

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