0

我在我的项目中使用了 bootstrap-sass gem。bootstrap.css 文件定义了 .btn 样式。我写了一个 CSS 文件并定义了 .btn 样式喜欢

> .btn a{ width:90px; height:25px; line-height:25px; background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#3588D4), to(#3287D0));background-image:linear-gradient(#3588D4,#3287D0); display:block; float:left; border-radius:5px; margin-right:15px; padding:0 5px; margin-top:8px;}

所以我想将我的 .btn 替换为 bootstrap.css .btn ,我该怎么做?

4

1 回答 1

0

为了永久覆盖引导类,我所做的是在资产中创建一个名为 bootstrap_override.css 的单独 css 文件,并将所有我想要覆盖的引导类放在那里。如果您没有在 application.css 中使用 require_tree,那么您必须单独包含该文件。

于 2013-11-06T05:41:53.170 回答