如何将bootstrap模态标题背景更改为深蓝色,将文本更改为白色。小提琴在这里:
答案 0 :(得分:3)
答案 1 :(得分:1)
为什么不将其添加到扩展CSS文件中,而不是更改所有模式的颜色。
.modal-header.primary {
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
}
,然后将primary添加到您的模式标题中:
<div class="modal-header primary">
答案 2 :(得分:0)
覆盖modal-header css类:
.modal-header {
color: white:
background-color: blue; // Code of the exact color you want
}
答案 3 :(得分:0)
将此添加到您的css
.modal-header{
background-color: darkblue;
color: white;
}