gpt4 book ai didi

css - Bootstrap 中的类

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

HTML:

<div class="row">
<div class="test">
<h1>test</h1>
</div>
<div class="test">
<h1>test</h1>
</div>
</div>

CSS:

.test
{
background-color: #000;
.col-md-2;
}

其中类测试尝试引用类 col,但它不起作用。

Bootstrap 允许从其他类引用类?

我使用了以下文章来指导我:

Link

最佳答案

在 CSS 中你不能嵌套类,你需要使用 SASS 或 LESS 来创建这些嵌套类调用:

使用 SASS 的例子:

.test {
background-color: #000;
@include make-md-column(2);
}

关于css - Bootstrap 中的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29827185/

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