还是看不懂checked

来源:7-3 CSS3选择器 :checked选择器

慕用4114161

2016-12-16 14:21

form {
 border: 1px solid #ccc;
 padding: 20px;
 width: 300px;
 margin: 30px auto;
}

.wrapper {
 margin-bottom: 10px;
}

.box {
 display: inline-block;
 width: 20px;
 height: 20px;
 margin-right: 10px;
 position: relative;
 border: 2px solid orange;
 vertical-align: middle;
}

.box input {
 opacity: 0;
 position: absolute;
 top:0;
 left:0;
}

.box span {
 position: absolute;
 top: -10px;
 right: 3px;
 font-size: 30px;
 font-weight: bold;
 font-family: Arial;
 -webkit-transform: rotate(30deg);
 transform: rotate(30deg);
 color: orange;
}

input[type="checkbox"] + span {
 opacity: 0;
}

input[type="checkbox"]:checked + span {
 opacity: 1;
}

写回答 关注

1回答

  • 一斤斤斤斤
    2016-12-16 17:16:21

    问题是什么?


十天精通CSS3

本课程为CSS3入门教程,深刻详解CSS3知识让网页穿上绚丽装备

242556 学习 · 2623 问题

查看课程

相似问题