伪类:条件
/*ul的第一个子元素*/
ul li:first-child{
background: green;
}
/*ul的最后一个子元素*/
ul li:last-child{
background: seagreen;
}
/*选中p1:定位到父元素,选择当前的第一个元素
选择当前p元素的父级元素,选中父级元素的第一个,并且是当前元素才生效!
*/
p:nth-child(1){
background: #8552ff;
}
/*选中父元素,下的p元素的第二个,类型*/
p:nth-of-type(2){
background: #45a8ff;
}