发表于: 2020-06-10 21:10:03
1 1099
今天完成的事情:
学习了sass的规则
嵌套:
避免重复书写使用嵌套更方便快捷
#content {
article {
h1 { color: #333 }
p { margin-bottom: 1.4em }
}
aside { background-color: #EEE }
}
/* 编译后 */
#content article h1 { color: #333 }
#content article p { margin-bottom: 1.4em }
#content aside { background-color: #EEE }
一个给定的规则块,既可以像普通的css那样包含属性,又可以嵌套其他规则块
#content {
background-color: #f5f5f5;
aside { background-color: #eee }
}
/* 编译后 */
#content { background-color: #f5f5f5 }
#content aside { background-color: #eee }
关于任务10的改变单元框样式
清空默认样式:
input[type="radio"]{
outline: none 清空单选框,点击时蓝色默认边框
-webkit-appearance: none 清空单选框默认边框
display: inline-block; 设置成行内元素
vertical-align: baseline; 将支持valign特性的对象的内容与基线对齐
设置点击前样式:
input[type="radio"]::before{}
设置点击后样式:
input[type="radio"]:checked::before{}
完整代码:
}
content: "\2022"; 设置框内特殊符号
2022 实心圆
特殊字符和形状可以省去很多事情,整理了一下网上的,留着以后用
基本形状
▲ 9650 25B2 ► 9658 25BA ► 9658 25BA ▼ 9660 25BC
◄ 9668 25C4 ❤ 10084 2764 ✈ 9992 2708 ★ 9733 2605
✦ 10022 2726 ☀ 9728 2600 ◆ 9670 25C6 ◈ 9672 25C8
▣ 9635 25A3
标点,特殊符号
« 171 00AB » 187 00BB ‹ 139 008B › 155 009B “ 8220 201C ” 8221 201D
‘ 8216 2018 ’ 8217 2019 • 8226 2022 ◦ 9702 25E6 ¡ 161 00A1 ¿ 191 00BF
℅ 8453 2105 № 8470 2116 & 38 0026 @ 64 0040 ℞ 8478 211E ℃ 8451 2103
℉ 8457 2109 ° 176 00B0 | 124 007C ¦166 00A6 – 8211 2013 — 8212 2014
… 8230 2026 ¶ 182 00B6 ∼ 8764 223C ≠ 8800 2260
评论