如何调整复选框周围的点击区域?

时间:2019-03-14 07:49:59

标签: html css angular

我目前在我的角度应用程序中遇到

im这个格式问题。 正如您在所附图像中看到的那样,我的复选框周围的可点击区域存在问题。

enter image description here enter image description here

我基本上想将可点击区域调整为复选框的大小。

在第二张图像中,我用背景色:海蓝宝石突出显示了当前区域。

我的SCSS代码如下所示。我觉得这应该是一件容易的事,但是我在细节上有些遗漏。

.date-checkbox {
display: inline;
float: right;
margin-right: -24px;
margin-top: -23px;
-webkit-transform: scale(2);
}

.disable-date {
opacity: 0.5;
pointer-events: none;
}

.enum-checkbox {
display: inline;
float: right;
margin-right: -24px;
margin-top: -23px;
-webkit-transform: scale(2);
}

/* The container */
.container {
cursor: pointer;
  }

/* Hide the browser's default checkbox */
.container input {
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
  }

/* Create a custom checkbox */
.checkmark {
position: absolute;
top: 4px;
left: 25px;
height: 15px;
width: 15px;
background-color: blue;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
background-color: blue;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
 background-color: blue;
}

/* 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: 5px;
top: 2px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}

我的HTML代码如下:

<div class="enum-checkbox">
    <label class="container">
       <input type="checkbox" (click)="IncludeExcludeProp(groupobject[g.PROPS.title], $event)"
        title="Include in search" />
        <span class="checkmark"></span>
    </label>
</div>

1 个答案:

答案 0 :(得分:3)

由于单击标签实际上会单击复选框,因此我会在复选框周围的padding上添加widthlabel,以使其延伸到需要单击区域的范围。 。

请注意,为了实现可访问性,我将aria-label添加到了复选框。屏幕阅读器将忽略title属性,否则label将不包含有关该复选框的有用信息。

enter image description here

.lbl-checkbox {
  display: inline-block;
  padding: 5em;
  background: #eee;
}
<label class="lbl-checkbox">
  <input aria-label="an appropriate label" type="checkbox">
</label>