Detailed explanation of writing multiple conditions of CSS: not

Detailed explanation of writing multiple conditions of CSS: not

The :not pseudo-class selector can filter elements that do not match the expression

example

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

The above code can select the non-first and non-last tr in the tbody part of the table, and set the text style of its child td element to the right

Here we need to pay attention to the grammatical format of not:

Single not writing:

/*Select non-paragraph elements*/
:not(p)
{
 
}

How to write multiple not

/*Select the middle p element in the div that is neither the first nor the last*/
div p:not(:first-child):not(:last-child){
}

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Design theory: the basics of font design

>>:  Summary of MySQL logical backup and recovery testing

Recommend

Solution to elementui's el-popover style modification not taking effect

When using element-ui, there is a commonly used c...

Can MySQL's repeatable read level solve phantom reads?

introduction When I was learning more about datab...

td width problem when td cells are merged

In the following example, when the width of the td...

Implementation example of Docker rocketmq deployment

Table of contents Preparation Deployment process ...

MySQL database JDBC programming (Java connects to MySQL)

Table of contents 1. Basic conditions for databas...

A brief discussion on the role and working principle of key in Vue3

What is the function of this key attribute? Let’s...

Summary of problems encountered in the implementation of Vue plug-ins

Table of contents Scene Introduction Plugin Imple...

WHMCS V7.4.2 Graphical Installation Tutorial

1. Introduction WHMCS provides an all-in-one solu...

How to install MySQL 5.7.17 and set the encoding to utf8 in Windows

download MySQL official download, select Windows ...

Detailed explanation of table return and index coverage examples in MySQL

Table of contents Index Type Index structure Nonc...

How to fix the width of table in ie8 and chrome

When the above settings are used in IE8 and Chrome...

VMware vCenter 6.7 installation process (graphic tutorial)

background I originally wanted to download a 6.7 ...

SQL implementation of LeetCode (177. Nth highest salary)

[LeetCode] 177.Nth Highest Salary Write a SQL que...

Share some tips on using JavaScript operators

Table of contents 1. Optional chaining operator [...