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