1、
选择器加载p标签中的第一个元素
p:nth-child(1){
}
选择器加载父标签内的第一个元素 n (所有) 2n 偶数
p:nth-of-type(1){
}
父级下的直接选中第一个
p:first-child{
}
父级下的直接选中最后一个
p:last-child{
}
p:first-of-type{
}
p:last-of-type{
}
1、
选择器加载p标签中的第一个元素
p:nth-child(1){
}
选择器加载父标签内的第一个元素 n (所有) 2n 偶数
p:nth-of-type(1){
}
父级下的直接选中第一个
p:first-child{
}
父级下的直接选中最后一个
p:last-child{
}
p:first-of-type{
}
p:last-of-type{
}