gpt4 book ai didi

html - 为多个 ID 设置 CSS 类

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

我做了以下事情:

#my-el .some-class {
width: 10%;
}

这行得通,但现在我想将相同的类应用到元素#my-new-el。我试过:

#my-el #my-new-el .some-class {
width: 10%;
}

但这行不通。实现此目标的正确语法是什么?

最佳答案

如果 .some-class 仅适用于 #my-el#my-new-el 的后代,那么您需要指定两个完整的选择器,用逗号分隔:

#my-el .some-class, #my-new-el .some-class  {
width: 10%;
}

关于html - 为多个 ID 设置 CSS 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31809692/

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