gpt4 book ai didi

html - 在自定义复选框中居中检查/勾选

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

我正在构建一个自定义复选框,功能已经差不多了,但样式还有待改进。

我有几个问题,

  1. 我需要以圆为中心的支票
  2. 我只需要在单击复选框本身而不是文本时激活检查。

恐怕我无法在不使用左侧位置左侧的填充的情况下将支票居中。

HTML

<label for='product-45-45'>
<input type='checkbox' style="float:left;" id='product-45-45' />
<div class="accord-text">
<strong>header:</strong> sub text
<strong>more text!</strong>
</div>
</label>

CSS

input[type=checkbox] {
display: none;
}

input[type=checkbox] + .accord-text:before {
width: 30px;
height: 30px;
border-radius: 200%;
background-color: #d6e4ec;
border: 1px solid #000;
display: block;
font-size: 150%;
font-weight: 900;
content: "";
color: green;
}

input[type=checkbox]:checked + .accord-text:before {
display: table;
content: "\2713";
}

最佳答案

  • 问题 1:text-align: center; 当复选框 ic 选中时,从复选框中删除 style="float:left;"
  • 问题 2:从 accord-text div 中删除文本并将其放在外面。

.row{
display: flex;
flex-direction: row;
}

input[type=checkbox] {
display: none;
}

input[type=checkbox] + .accord-text:before {
width: 30px;
height: 30px;
border-radius: 200%;
background-color: #d6e4ec;
border: 1px solid #000;
display: block;
font-size: 140%;
font-weight: 900;
content: "";
color: green;
}

input[type=checkbox]:checked + .accord-text:before {
display: table;
content: "\2713";
text-align: center;
}
<div class="row">
<label for='product-45-45'>
<input type='checkbox' style="float:left;" id='product-45-45' />
<div class="accord-text">

</div>
</label>

<strong>header:</strong> sub text
<strong>more text!</strong>
</div>

关于html - 在自定义复选框中居中检查/勾选,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41827745/

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