gpt4 book ai didi

css - 需要对 CSS 选择器进行说明

转载 作者:太空宇宙 更新时间:2023-11-03 20:30:40 24 4
gpt4 key购买 nike

谁能解释一下下面的 CSS 代码:

html:not([dir="rtl"]){
//some CSS property
}

最佳答案

html:not([dir="rtl"])

让我们分解一下!


html

选择所有 html 元素(很可能只有一个)...

:not( ... )

... 做 not ...

[dir="rtl"]

... 有 attribute dir 设置为 "rtl"

因此,总而言之,它选择所有 html 元素没有dir 设置为 "rtl"。示例:

<html>  <!-- Would match! -->

<html lang="en"> <!-- Would match! -->

<html dir> <!-- Would match! -->

<html dir="ltr"> <!-- Would match! -->

<html dir="rtl"> <!-- Would NOT match! -->

关于css - 需要对 CSS 选择器进行说明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42707168/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com