css :not的多个条件的写法

时间:2022-05-09 02:54:04

:not 伪类选择器可以筛选不符合表达式的元素

例子

table tbody tr:not(:first-child):not(:last-child) td
{
     text-align: right;
}

以上代码可以选择table表格中tbody部分非首个、非最后一个的tr,并设置其子元素td文本样式居右

这里面需要注意not的语法格式:

单个的not写法:

/*选中非段落元素*/
:not(p)
{

}

多个not的写法

/*选中div里面非首个、非最后一个的中间p元素*/
div p:not(:first-child):not(:last-child){
}