first-child和:last-child选择器
first-child和:last-child选择器。
:first-child选择器:用于为父元素中的第一个子元素设置样式。
:last-child选择器:用于为父元素中的最后一个子元素设置样式。
知识点5-:nth-child(n)和:nth-last-child(n)选择器
nth-child(n)和:nth-last-child(n)选择器。
:nth-child(n)选择器:用于选择作为其父元素的第2个子元素。
:nth-last-child(n)选择器:用于选择作为其父元素的倒数第2个子元素。
知识点6-:nth-of-type(n)和:nth-last-of-type(n)选择器
nth-of-type(n)和:nth-last-of-type(n)选择器。
:nth-of-type(n):用于匹配属于父元素的特定类型的第 n 个子元素。
:nth-last-of-type(n)选择器:用于匹配属于父元素的特定类型的倒数第n个子元素。