gpt4 book ai didi

CSS:多个类的一个属性

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

我有以下内容:

 .category-2 .content aside {margin-top: 4px;}
.category-3 .content aside {margin-top: 4px;}
.category-4 .content aside {margin-top: 4px;}

如何对所有三个类别使用一个 margin-top?

最佳答案

使用 ',' 字符将您的属性共享给多个选择器:

.category-2 .content aside,
.category-3 .content aside,
.category-4 .content aside
{
margin-top: 4px;
}

按照@Aaron 的建议,这种格式化 css 的方式称为逗号分隔选择器

关于CSS:多个类的一个属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39014788/

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