css的:not()选择器可用将不想添加的个别元素分离出来,例:
为除了p元素以外的所有元素添加样式:
类名:not(p)
{
width: 80%;
}
选择第一个或最后一个子元素:
类名:not(:first-child)
{
width: 80%;
}
类名:not(:last-child)
{
width: 80%;
}
组合使用
.类名:not(:last-child):after
{
width:80%
}
.类名:not(:first-child):not(:last-child){
width:80%
}