gpt4 book ai didi

css - 在 CSS 中,如何更有效地选择多个嵌套元素?

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

看看这个 CSS 文件:

#footer {...}

#footer a {...}

#footer .b {...}

...

我只想写#footer的CSS,有没有办法只写一次#footer

我的意思是,CSS 有这样的语法吗:

#footer {
...
a {...}
.b {...}
...
}

最佳答案

参见 http://lesscss.org/网站并向上滚动到嵌套规则部分,还要检查下面的例子。希望这对您有所帮助。

// LESS


#header {
h1 {
font-size: 26px;
font-weight: bold;
}
p { font-size: 12px;
a { text-decoration: none;
&:hover { border-width: 1px }
}
}
}

/* Compiled CSS */

#header h1 {
font-size: 26px;
font-weight: bold;
}
#header p {
font-size: 12px;
}
#header p a {
text-decoration: none;
}
#header p a:hover {
border-width: 1px;
}

谢谢杰里米·沃格斯

关于css - 在 CSS 中,如何更有效地选择多个嵌套元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18374264/

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