html 自定义样式复选框输入表单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 自定义样式复选框输入表单相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<style>
/* The container */
.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;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

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

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: white;
    border: 1px solid #BFC3C5;
}

/* 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 indicator (dot/circle) */
.container .checkmark:after {
 	top: 6px;
	left: 6px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #92929B;
}
</style>
<body>

<label class="container">One
  <input type="checkbox" checked="checked">
  <span class="checkmark"></span>
</label>


</body>
</html>

以上是关于html 自定义样式复选框输入表单的主要内容,如果未能解决你的问题,请参考以下文章

对复选框自定义样式 优化方法

自定义input[type="checkbox"]的样式

复选框样式自定义

样式输入类型文件? [复制]

自定义表单-校验数据规则

自定义_单选按钮和复选框_样式