结构伪类选择器 /* ol的第一个子元素 */ ol li:first-child{background:rgb(97, 5, 20);} /* ol的最后一个子元素 */ ol li:last-child{background:blue;} /* 选择父级中的第一个子元素 h3 */ h3:nth-child(1){background:yellow;} /* 选择父级中的第二个类型为 h3 的元素 */ h3:nth-of-type(2){background:red;} /* 父级下相同类型子元素p中的第一个 */ p:first-of-type{background:green;} /* 父级元素下相同类型子元素p中的最后一个 */ p:last-of-type{background:skyblue;}