gpt4 book ai didi

css - 相同的重复类样式?

转载 作者:行者123 更新时间:2023-11-28 10:53:59 25 4
gpt4 key购买 nike

开发时,我通常使用工具集。目前它看起来像这样:

MT10 {margin-top:10px;}
MT20 {margin-top:20px;}
MT30 {margin-top:30px;}
MT40 {margin-top:40px;}

PADB10 {padding-bot:10px;}
PADB20 {padding-bot:20px;}
PADB30 {padding-bot:30px;}
PADB40 {padding-bot:40px;}

有没有可能有一个类可以检测到我放在 MT 或 PADB 之后的任何数字?我想象一个通用类,我可以添加一个数字来影响样式。这可能吗?

最佳答案

使用纯 CSS,这是不可能的。

但是,如果您使用类似 LessCSS 的内容, 是可以实现的。

例如:

.margin-top(@margin) {
margin-top: @margin;
}

然后,给每个人一个类:

.margin-top(10px);
.margin-top:(20px);

等...

关于css - 相同的重复类样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22684729/

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