如何扩展引导​​类

How extend bootstrap classes(如何扩展引导​​类)
本文介绍了如何扩展引导​​类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 Bootstrap Twitter 做我的第一步,并且需要扩展组件.例如,我想更改导航栏背景,但不更改原始 css 文件.

I am doing my first steps with Bootstrap Twitter, and need to extend components. For example, I would like to change the navbar background, but without changing the original css file.

我尝试用新的背景创建一个新的类.test:

I tried to create a new class .test with the new background:

.test{
    background-color: red !important;
}

我在 hmtl 中将其调用为:

And I've invoked it in the hmtl as:

 <div class="navbar navbar-fixed-top test">

但是,它不起作用.怎么会这样?

But, it doesn't work. How can do this?

推荐答案

这里有几种自定义/扩展 Bootstrap 类的方法:Twitter Bootstrap 自定义最佳实践

There are a few ways to customize/extend Bootstrap classes which are all discussed here: Twitter Bootstrap Customization Best Practices

如果您打算使用自己的自定义 CSS 覆盖 boostrap 样式,则应避免使用 !important,因为这通常是一种不好的做法.

If you intend to override the boostrap styles with your own custom CSS you should avoid using !important as this is generally a bad practice.

navbar 的情况下,具有背景颜色的元素是 navbar-inner,因此您需要像这样覆盖:

In the case of the navbar, the element that has the background-color is navbar-inner so you'd want to override like this:

.test .navbar-inner{
    background-color: red;
}

自定义导航栏示例:http://bootply.com/61032

如何扩展/修改(自定义)Bootstrap 4SASS

这篇关于如何扩展引导​​类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

wkhtmltopdf print-media-type uses @media print ONLY and ignores the rest(Wkhtmltopdf print-media-type仅使用@media print,而忽略其余内容)
Minify CSS with Node-sass(使用Node-Sass缩小CSS)
How to rotate outer div not inner content(如何旋转外部div而不是内部内容)
how to apply css transform to child on parent hover(如何对父级悬停时的子级应用CSS变换)
Only transition a transform in css?(是否仅在css中转换转换?)
CSS transform doesn#39;t change CSS layout(Css转换不会更改css布局)