gpt4 book ai didi

javascript - 无法设置复选框 HTML/CSS 的样式

转载 作者:太空宇宙 更新时间:2023-11-04 06:43:04 26 4
gpt4 key购买 nike

我无法对某些 HTML 复选框进行任何样式设置。任何 css 都无法更改复选框的外观:

HTML:

<input type="checkbox" id="checkbox-1-1" class="regular-checkbox" />
<nput 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" />

CSS:

.regular-checkbox {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
}

复选框没有变化。谁能告诉我我在这里做错了什么?我认为这在 CSS 中是可能的。

最佳答案

如果有帮助或者您需要一些解释,请告诉我。

<!DOCTYPE html>
<html>
<style>
.container {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 12px;
cursor: pointer;
font-size: 22px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

.container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}

.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
}

.container:hover input~.checkmark {
background-color: #ccc;
}

.container input:checked~.checkmark {
background-color: #2196F3;
}

.checkmark:after {
content: "";
position: absolute;
display: none;
}

.container input:checked~.checkmark:after {
display: block;
}

.container .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
</style>

<body>

<label class="container">One
<input type="checkbox">
<span class="checkmark"></span>
</label>

</body>

</html>

关于javascript - 无法设置复选框 HTML/CSS 的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53510053/

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