gpt4 book ai didi

css - rails bootstrap css 优化

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

我有很多表,而不是总是给类 %table.table.table-hover.table-condensed.table-responsive.table-bordered 我能以某种方式将它设置为 %table 将采用 application.css.scss 中的所有其他选项?

我试过了

.table {
.table-responsive;
.table-bordered;
}

,但是显示错误。

有什么想法吗?

最佳答案

@extend 看起来像是您问题的解决方案。将以下内容添加到您的 scss 中:

table {
@extend .table, .table-hover, .table-condensed, .table-responsive, .table-bordered
}

不过要小心:@extend 很棘手,它不会将 .table、.table-hover 等属性添加到您对“table”的定义中,而是将 block 的内容添加到您编译的 css,其中提到了任何其他类。

关于css - rails bootstrap css 优化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35586307/

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