


What are selector declarations and nesting? Declaration and nesting of CSS selectors
When using CSS selectors to control HTML tags, the attributes of each selector can be declared multiple times at a time, and the selector itself can also be declared multiple at the same time. Moreover, any form of selector is legal, and tag selectors, class selectors and ID selectors can all be declared collectively. When declaring CSS selectors, if the styles of some selectors are exactly the same or partially the same, you can use collective declaration to declare selectors with the same style at the same time.
<span style="font-size:24px;"><html> <head> <title> 集体声明 </title> <style type="text/css"> <!-- h1,h2,h3,h4,h5,p{ color:purple; font-size:15px; } h2.special,.special,#one{ text-decoration:underline; } --> </style> </head> <body> <h1 id="集体声明h">集体声明h1</h1> <h2 id="集体声明h">集体声明h2</h2> <h3 id="集体声明h">集体声明h3</h3> <h4 id="集体声明h">集体声明h4</h4> <h5 id="集体声明h">集体声明h5</h5> <p>集体声明p1</p> <p class="special">集体声明p2</p> <p id="one">集体声明p3</p> </body> </html> </span>
Global declaration
For the actual website, if you want all the tags in the page to use the same CSS style, but it is not If you want to declare collectively one by one, you can use the global declaration symbol * to declare.
<span style="font-size:24px;"><html> <head> <title> 集体声明 </title> <style type="text/css"> <!-- *{ color:purple; font-size:15px; } h2.special,.special,#one{ text-decoration:underline; } --> </style> </head> <body> <h1 id="集体声明h">集体声明h1</h1> <h2 id="集体声明h">集体声明h2</h2> <h3 id="集体声明h">集体声明h3</h3> <h4 id="集体声明h">集体声明h4</h4> <h5 id="集体声明h">集体声明h5</h5> <p>集体声明p1</p> <p class="special">集体声明p2</p> <p id="one">集体声明p3</p> </body> </html> </span>
It can be seen that the two declarations have exactly the same effect, but using global declarations will greatly reduce the code.
Nesting of selectors
In CSS selectors, you can use nesting to declare HTML tags in special positions .
For example, controlling the b tag in the p tag
<span style="font-size:24px;"><html> <head> <title> CSS选择器的嵌套声明 </title> <style type="text/css"> <!-- p b{ color:maroon; text-decortion:underline; } --> </style> </head> <body> <p>嵌套使<b>用CSS</b>标记的方法</p> 嵌套之外的<b>标记</b>不生效 </body> </html> </span>
Nested selectors are widely used, not just nested tags By itself, both category selectors and ID selectors can be nested.
The following code uses three levels of nesting. In fact, more levels of nesting are allowed, indicating that the
tag of the top1 category, which contains the tag, declares the style.
<span style="font-size:24px;">td.top .top1 strong{ font-size:16px; } <td class="top"> <p class="top1"> 其他内容<strong>CSS控制的部分</strong>其他内容 </p> </td> </span>
The nesting of selectors can greatly reduce the declaration of class and id in CSS. Therefore, when building the HTML of the page, usually only define class or id for the outer tag. id. If the inner tag can be represented by nesting, the nesting method is used. Therefore, there is no need to define a new class or id. Only when the sub-tag cannot take advantage of this rule, a separate declaration is made.
The above is the detailed content of What are selector declarations and nesting? Declaration and nesting of CSS selectors. For more information, please follow other related articles on the PHP Chinese website!

CSS Grid is a powerful tool for creating complex, responsive web layouts. It simplifies design, improves accessibility, and offers more control than older methods.

Article discusses CSS Flexbox, a layout method for efficient alignment and distribution of space in responsive designs. It explains Flexbox usage, compares it with CSS Grid, and details browser support.

The article discusses techniques for creating responsive websites using CSS, including viewport meta tags, flexible grids, fluid media, media queries, and relative units. It also covers using CSS Grid and Flexbox together and recommends CSS framework

The article discusses the CSS box-sizing property, which controls how element dimensions are calculated. It explains values like content-box, border-box, and padding-box, and their impact on layout design and form alignment.

Article discusses creating animations using CSS, key properties, and combining with JavaScript. Main issue is browser compatibility.

Article discusses using CSS for 3D transformations, key properties, browser compatibility, and performance considerations for web projects.(Character count: 159)

The article discusses using CSS gradients (linear, radial, repeating) to enhance website visuals, adding depth, focus, and modern aesthetics.

Article discusses pseudo-elements in CSS, their use in enhancing HTML styling, and differences from pseudo-classes. Provides practical examples.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver CS6
Visual web development tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

WebStorm Mac version
Useful JavaScript development tools
