gpt4 book ai didi

html - 为什么 box-sizing 不适用于单选按钮?

转载 作者:太空宇宙 更新时间:2023-11-04 11:42:47 25 4
gpt4 key购买 nike

我尝试定制 radio button ,但我不明白为什么 box-sizing 不起作用。

Chrome :radio button Chrome

火狐:radio button FireFox

我错过了什么?

HTML:

<input class="radio-btn" type="radio" name="a"/>
<input class="radio-btn" type="radio" name="a"/>
<input class="radio-btn" type="radio" name="a"/>
<input class="radio-btn" type="radio" name="a"/>
<input class="radio-btn" type="radio" name="a"/>

CSS:

.radio-btn {
appearance: none;
box-sizing: border-box;
width: 0;
height: 0;
border-radius: 50%;
border: 6px solid #fff;
box-shadow: 0 0 0 2px #000;
transition: .2s border-color;
cursor: pointer;
}
.radio-btn:checked {
width: 12px;
height: 12px;
border: 3px solid #000;
box-shadow: 0 0 1px 2px #000;
}
.radio-btn:hover {
box-shadow: 0 0 1px 2px #000;
}
.radio-btn:focus {
outline: 0;
}

http://jsfiddle.net/u86xboqd/

最佳答案

您将 .radio-btn CSS 中的宽度和高度设置为 0。如果您将每个设置为 12px(以匹配您的其他样式),我认为它看起来会像您想要的那样。

.radio-btn {
width: 12px;
height: 12px;
}

关于html - 为什么 box-sizing 不适用于单选按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31188169/

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