【问题标题】:How to change the color of the jumbotron? Bootstrap3 [closed]如何更改jumbotron的颜色? Bootstrap3 [关闭]
【发布时间】:2015-09-24 11:24:56
【问题描述】:

我在更改 Bootstrap3 中 jumbotron 的颜色时遇到问题,我尝试创建另一个类来更改它的颜色,我还尝试覆盖现有类并更改背景颜色但没有改变。解决这个问题的最佳方法是什么?顺便说一句,这是我的代码!

别管引导库,

    <div class="container">
      <div class="jumbotron">
      <p>This is another paragraph.</p> 
      <p>This is a paragraph.</p> 
      <p>This is another paragraph.</p>
     </div>
    </div>

CSS(外部)

.jumbotron{
width: 1150px;
height: 320px;
background-color: #E64545;
}

【问题讨论】:

标签: html css twitter-bootstrap background background-color


【解决方案1】:

不要覆盖 Bootstrap 类,只需像这样添加一个:

.myJumbotron {
   background-color: #E64545;
}

HTML:

<div class="container">
  <div class="jumbotron myJumbotron">
  <p>This is another paragraph.</p> 
  <p>This is a paragraph.</p> 
  <p>This is another paragraph.</p>
 </div>
</div>

Here is a JSFiddle

【讨论】:

猜你喜欢
  • 1970-01-01
  • 2021-04-03
  • 2015-11-22
  • 2013-10-06
  • 2016-06-03
  • 1970-01-01
  • 1970-01-01
  • 2017-10-04
  • 1970-01-01
相关资源
最近更新 更多