Bootstrap面板标题样式不起作用

时间:2014-06-15 00:31:50

标签: html css twitter-bootstrap styling

我的CSS样式有点问题。由于某些原因,我无法确定这将无法正确设置样式,我无法在CSS中编辑颜色。这是一个实际标题看起来像的图像,由于某种原因,背景不会样式。

enter image description here

这是我正在使用的类的css样式代码:

.panel-heading {
    text-align: center;
    background-color: #ececb0;
}

这是标题的html代码:

<div class="panel-heading"><h3 class="title">DeadSwitchand</h3></div>

1 个答案:

答案 0 :(得分:1)

!important属性上使用background-color

.panel-heading {
    text-align: center;
    background-color: #ececb0 !important;
}

<强> JsFiddle