search
HomeWeb Front-endCSS TutorialUnderstand the css pseudo-class selector in 5 minutes: is :not

This article introduces the Css pseudo-classes: is and :not, and explains the relationship between is, not, matches, and any

Understand the css pseudo-class selector in 5 minutes: is :not

:not

The :not() CSS pseudo-class represents elements that do not match a list of selectors. Since it prevents specific items from being selected, it is known as the negation pseudo-class.

The above is MDN’s explanation of not

Recommended learning:CSS video tutorial

We should be able to have a general understanding of it from the name alone. Non-selection, exclude other elements in brackets

The simplest example, use CSS will change the font color of the div to blue without changing the html, except for the P tag.

<div>
    <span>我是蓝色</span>
    <p>我是黑色</p>
    <h1>我是蓝色</h2>
    <h2 id="我是蓝色">我是蓝色</h2>
    <h3 id="我是蓝色">我是蓝色</h3>
    <h4 id="我是蓝色">我是蓝色</h4>
    <h5 id="我是蓝色">我是蓝色</h5>
</div>

Previous practice

div span,div h2,div h3, div h4,{
  color: blue;
}

not writing method

div:not(p){
  color: blue;
}

From the above example, you can clearly understand the role of the not pseudo-class selector

Let’s upgrade it, ask: except span and p in the div, change the other font colors to blue

div:not(p):not(span){
  color: blue;
}

There is a more concise method, as follows, but the compatibility is not very good at present. It is not recommended to use

div:not(p,span){
  color: blue;
}

Compatible

Except IE8, all major browsers currently support it , you can use it with confidence

:is

The :is() CSS pseudo-class function takes a selector list as its argument, and selects any element that can be selected by one of the selectors in that list. This is useful for writing large selectors in a more compact form.

The above is MDN’s explanation

Before saying is, You need to first understand the relationship between matches

matches and is?

matches is the past life of is, but it is essentially the same thing, and its usage is exactly the same.

The meaning of the word matches matches its function very well, but it has the exact opposite function of not. As not On the opposite side, matches looks really out of place this time, and the words are not concise enough, so it was renamed. There is also an issue https://github.com/w3c/csswg-drafts/issues/3258, which is the source of its name change.

Okay, now we know that matches and is are actually the same thing, so how is is used?

Example: Make the p tag under header and main turn blue when the mouse hovers over it

<header>
  <ul>
    <li><p>鼠标放上去变蓝色</p></li>
    <li><p>鼠标放上去变蓝色</p></li>
  </ul>
  <p>正常字体</p>
</header>
<main>
  <ul>
    <li><p>鼠标放上去变蓝色</p></li>
    <li><p>鼠标放上去变蓝色</p></li>
    <p>正常字体</p>
  </ul>
</main>
<footer>
  <ul>
    <li><p>正常字体</p></li>
    <li><p>正常字体</p></li>
  </ul>
</footer>

Previous practice

header ul p:hover,main ul p:hover{
  color: blue;
}

is writing method

:is(header, main) ul p:hover{
  color: blue;
}

From the above example, you can probably see the influence of is, but it does not fully reflect the power of is. However, when you select more content, especially those with more levels, you will find that there are many ways to write is. To be concise, take an example from MDN and look at the previous writing method of

/* Level 0 */
h1 {
  font-size: 30px;
}
/* Level 1 */
section h1, article h1, aside h1, nav h1 {
  font-size: 25px;
}
/* Level 2 */
section section h1, section article h1, section aside h1, section nav h1,
article section h1, article article h1, article aside h1, article nav h1,
aside section h1, aside article h1, aside aside h1, aside nav h1,
nav section h1, nav article h1, nav aside h1, nav nav h1 {
  font-size: 20px;
}

is writing method

/* Level 0 */
h1 {
  font-size: 30px;
}
/* Level 1 */
:is(section, article, aside, nav) h1 {
  font-size: 25px;
}
/* Level 2 */
:is(section, article, aside, nav)
:is(section, article, aside, nav) h1 {
  font-size: 20px;
}

It can be seen that as the nesting level increases, the advantage of is becomes more and more It’s becoming more and more obvious

After talking about is, we must get to know any. As mentioned earlier, is is the replacement of matches.

What is the relationship between any and is?

Yes, is is also a substitute for any. It solves some of the disadvantages of any, such as browser prefixes, selection performance, etc.

any has exactly the same function as is, the only difference is The only thing is that it needs to be added with a browser prefix. The usage is as follows

:-moz-any(.b, .c) {
}
:-webkit-any(.b, .c) { 
}

Conclusion

The above introduction roughly describes the relationship between the css pseudo-classes is, not, matches, and any

is not combination is the general trend

This article comes from PHP Chinese website, CSS tutorial column, welcome to learn

The above is the detailed content of Understand the css pseudo-class selector in 5 minutes: is :not. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:博客园. If there is any infringement, please contact admin@php.cn delete
css中hover什么意思css中hover什么意思Feb 22, 2024 pm 01:24 PM

CSS中的:hover是一种伪类选择器,用于在用户悬停在特定元素上时,应用特定的样式。当鼠标悬停在元素上时,可以通过:hover为其添加不同的样式,从而增强用户体验和交互效果。本文将详细讨论:hover的含义以及给出具体的代码示例。首先,让我们了解一下CSS中:hover的基本用法。在CSS中,可以通过选择器来选中要应用:hover效果的元素,并在其后面加上

css中的li标签怎么去除前面的圆点css中的li标签怎么去除前面的圆点Apr 28, 2024 pm 12:36 PM

CSS中去除li标签圆点的方法有两种:1.使用"list-style-type: none;"样式;2.使用透明图片和"list-style-image: url("transparent.png");"样式。两种方法都能删除所有li标签的圆点,如果您只想删除某些li标签的圆点,可以使用伪类选择器。

如何使用:nth-child(-n+5)伪类选择器选择位置小于等于5的子元素的CSS样式如何使用:nth-child(-n+5)伪类选择器选择位置小于等于5的子元素的CSS样式Nov 20, 2023 am 11:52 AM

如何使用:nth-child(-n+5)伪类选择器选择位置小于等于5的子元素的CSS样式在CSS中,伪类选择器是一种强大的工具,可以通过特定的选择方式来选取HTML文档中的某些元素。其中,:nth-child()是一种常用的伪类选择器,可以选择特定位置的子元素。:nth-child(n)可以匹配HTML中的第n个子元素,而:nth-child(-n)可以匹配

使用CSS中的content属性使用CSS中的content属性Feb 19, 2024 am 10:56 AM

CSS中content属性的用法CSS中的content属性是一个非常有用的属性,它是用来在伪类中插入额外的内容的。content属性一般只能在伪类选择器(如::before和::after)中使用,它可以用来插入文本或者图片等内容。我们可以通过content属性实现一些非常炫酷的效果。下面是content属性的一些用法以及具体的代码示例:插入文本内容通过

css中::什么意思css中::什么意思Apr 28, 2024 pm 03:45 PM

CSS 中的 :: 伪类选择器用于指定元素的特殊状态或行为,并且比伪类选择器 : 更具体,可针对元素的特定属性或状态进行选择。

css中hover怎么使用css中hover怎么使用Feb 23, 2024 pm 12:06 PM

CSS中的hover伪类是一个非常常用的选择器,它允许我们在鼠标悬停在元素上时改变其样式。本文将为大家介绍hover的用法,并提供具体的代码示例。一、基本用法要使用hover,我们需要先为该元素定义一个样式,然后使用:hover伪类来制定鼠标悬停时对应的样式。例如,我们有一个button元素,当鼠标悬停在按钮上时,我们希望按钮的背景色变为红色,文字颜色变为白

使用:nth-last-child(2)伪类选择器选择倒数第二个子元素的样式使用:nth-last-child(2)伪类选择器选择倒数第二个子元素的样式Nov 20, 2023 am 11:22 AM

使用:nth-last-child(2)伪类选择器选择倒数第二个子元素的样式,需要具体代码示例在CSS中,伪类选择器是一种非常强大的工具,可以用来选择文档树中特定的元素。其中之一就是:nth-last-child(2)伪类选择器,它可以选择倒数第二个子元素并对其应用样式。首先,让我们来创建一个示例HTML文档,以便我们可以在其中使用这个伪类选择器。以

不同种类的CSS3选择器不同种类的CSS3选择器Feb 18, 2024 pm 11:02 PM

CSS3选择器有多种类型,它们可以根据不同的元素属性、结构关系或状态来选择元素。下面将介绍几种常用的CSS3选择器类型,并提供具体的代码示例。基本选择器:元素选择器:使用元素名称作为选择器,此处以p元素为例:p{color:red;}类选择器:使用类名作为选择器,以.开头,此处以class为example的元素为例:.example{fo

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version