<input type="checkbox" class="pay_li_ipt"> 样式改成圆形
时间: 2024-10-16 14:12:15 浏览: 12
如果你想将HTML表单中的复选框(input type="checkbox")样式改为圆形,通常需要借助CSS的伪元素和背景图或者使用一些现成的CSS框架,如Bootstrap或自定义CSS类。下面是一个简单的例子,假设你想要创建一个圆角的复选框:
```html
<input type="checkbox" class="custom-checkbox" id="circleCheckbox">
<label for="circleCheckbox"></label>
```
```css
.custom-checkbox {
display: inline-block;
position: relative;
width: 24px;
height: 24px;
cursor: pointer;
}
.custom-checkbox input[type="checkbox"] {
opacity: 0;
z-index: 1;
}
.custom-checkbox::before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 24px;
height: 24px;
border-radius: 50%;
background-color: #ccc; /* 可以设置为白色或其他颜色 */
transition: all 0.3s ease-in-out;
}
.custom-checkbox:checked::before {
background-color: green; /* 当勾选时的颜色 */
}
/* 使用伪元素添加焦点效果 */
.custom-checkbox:hover::before,
.custom-checkbox:focus::before {
background-color: blue;
}
```
阅读全文