gpt4 book ai didi

html - 单击后从复选框中删除悬停类

转载 作者:太空宇宙 更新时间:2023-11-03 20:42:59 24 4
gpt4 key购买 nike

单击复选框后,我试图通过 CSS 删除应用于复选框的悬停类。有谁知道如何做到这一点?

JSFiddle http://jsfiddle.net/sa9fe/

复选框代码为:

    <div>
<input type="checkbox" id="checkbox-1-1" class="regular-checkbox flaticon-boxing3" />
<input type="checkbox" id="checkbox-1-2" class="regular-checkbox" />
<input type="checkbox" id="checkbox-1-3" class="regular-checkbox" />
<input type="checkbox" id="checkbox-1-4" class="regular-checkbox" />
</div>

复选框的 CSS 如下:

.regular-checkbox {
vertical-align: middle;
text-align: center;
margin-left: auto;
margin-right: auto;
align: center;
color: #39c;
width: 140px;
height: 140px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
background-color: #fff;
border: solid 1px #ccc;
-webkit-appearance: none;
background-color: #fff;
display: inline-block;
position: relative;}

.regular-checkbox:checked {
background-color: #39c;
color: #fff !important;}

.regular-checkbox:hover {
background-color: #f0f7f9;}

.regular-checkbox:checked:after {
color: #fff;
position: absolute;
top: 0px;
left: 3px;
color: #99a1a7; }

那么有什么建议吗?

也有人知道如何更改突出显示,因为目前它似乎在 3px 的边界半径处突出显示框的边缘,而我使用的框是 6px。

最佳答案

所以只需添加这个

.regular-checkbox:checked, .regular-checkbox:checked:hover {
background-color: #39c;
color: #fff !important;
}

如果你想移除蓝色边框,请在你的 .regular-checkbox 类中添加 outline:0;

http://jsfiddle.net/sa9fe/4/

关于html - 单击后从复选框中删除悬停类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24056163/

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