first-child
选中第一个子元素
first-of-type:选中的是子元素中第一个指定类型的元素
last-child
nth-child(n)
选中指定的第几个子元素
even:关键字,等同于2n
odd:关键字,等同于2n+1
nth-of-type
选中的指定的子元素中第几个某类型的元素
first-letter
选中元素中第一个字母
first-line
选中元素中第一行的文字
selection
选中被用户可选的文字
使用cursor设置
img元素属于HTML的概念
背景图属于css概念
background-image
background-repeat
默认情况下,背景图会在横坐标和纵坐标中进行重复
background-size
预设值:contain,cover,类似于object-fit
数值或百分比
/* background-size:100% 100%; */
background-size:300px 400px;
background-position:center bottom;
数值或百分比:相对位置
雪碧图(精灵图spirit)
5. background-attachment
通常用它控制背景图是否固定
背景图和背景颜色混用
速写(简写)background
body{
background:url("imgs/main_bg.jpg")no-repeat center/100% #000;
}