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
Table of contents 1. Background: 2. Design ideas:...
When using element-ui, there is a commonly used c...
introduction When I was learning more about datab...
In the following example, when the width of the td...
Table of contents Preparation Deployment process ...
Table of contents 1. Basic conditions for databas...
What is the function of this key attribute? Let’s...
Table of contents Scene Introduction Plugin Imple...
1. Introduction WHMCS provides an all-in-one solu...
download MySQL official download, select Windows ...
Table of contents Index Type Index structure Nonc...
When the above settings are used in IE8 and Chrome...
background I originally wanted to download a 6.7 ...
[LeetCode] 177.Nth Highest Salary Write a SQL que...
Table of contents 1. Optional chaining operator [...