站内搜索:
首页 >> 前端 >> 内容
模拟复选框

时间:2017/9/2 9:28:00

模拟复选框

模拟复选框

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <style type="text/css">

label {
    background-color: #fafafa;
    border: 1px dashed #cacece;
    box-shadow: 0 1px 2px silver;
    padding: 9px;
    border-radius: 3px;
    display: inline-block;
    position: relative;

}

.regular-checkbox:checked + label:after {
    content: url(images/tupian5_01.png);
    font-size: 36px;
    position: absolute;
    top: 0px;
    left: 3px;
    color: #5056de;
}
.regular-checkbox {
    display: none;
}
    </style>
</head>
<body>
    <input type="checkbox" id="checkbox-1-1" class="regular-checkbox">
    <label for="checkbox-1-1"></label>
</body>
</html>

  • 上一篇:关于document.all.item()
  • 下一篇:CSS的四种引入方式与特点
  • 返回顶部