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

标签 html css

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

喜欢这张图片 此图像适用于浏览器全屏显示时 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/

相关文章:

javascript - 如果绝对位置元素在屏幕下方,无论如何要使主体滚动条出现?

javascript - Masonry broken(可能是经典)

javascript - ngFor 项目 Angular 8 的动态 routerLink 值

jquery - 使背景模糊并禁用背景

html - 一行中的两个 div 元素,但一个是透明的

javascript - 为什么 td max-width 在这种情况下不起作用?

jQuery 未在本地主机页面上加载

javascript - 文档中的 CKEditor 样式表

html - 将图像垂直居中到多列容器 Bootstrap 4 中的文本?

javascript - 页面加载时默认隐藏所有div,显示:none doesn't appear to work