gpt4 book ai didi

html - 如何响应和修复 css 中的复选框

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

我想修复并匹配表格中的蓝色复选框

喜欢这张图片此图像适用于浏览器全屏显示时 http://s8.picofile.com/file/8368937534/%D8%B3%D8%B3.jpg

但对我来说,当我缩小浏览器时,它看起来像下面的照片 http://s9.picofile.com/file/8368937576/%D8%B4%D8%B4.jpg

.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;
}


/* Hide the browser's default checkbox */

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


/* Create a custom checkbox */

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


/* On mouse-over, add a grey background color */

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


/* When the checkbox is checked, add a blue background */

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


/* Create the checkmark/indicator (hidden when not checked) */

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


/* Show the checkmark when checked */

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


/* Style the checkmark/indicator */

.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);
}
<th scope="row">7:00</th>
<td>
<label class="container" style="direction:rtl">
<input type="checkbox"checked="checked"/>
<span class="checkmark"></span>
</label>
</td>

谢谢。

最佳答案

 checkmark {width: 100%;}

.container .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid #2196f3;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}

关于html - 如何响应和修复 css 中的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57378315/

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