1.交集选择器
交集选择器由2个选择器构成,第一个为标签选择器,第二个为类选择器 如h3.special
2.并集选择器
跟交集选择器相反,
3.后代选择器
可以选择快标签中的后代例如.** p就是选择类为**下面的子元素的p标签中的内容
4.子选择器
用大于号表示例如ul>li只选择ul的子li的选择器变属性
5.属性选择器
*【title="***】表示所有有title=***的选择器
6.伪元素选择器
标签::first-letter 第一个字 first-line 第一行 after内容后 before内容前
css的背景background
background-image背景图片
background-repeat是否平铺
backgrond-postion 背景位置
background-attachment是否背景可以滚动
background-size cover是可以填充的
背景简写
background:#000 URL()no-repact fixed center -25px
来源:oschina
链接:https://my.oschina.net/u/3234136/blog/1632039