如何更改引导模式标题颜色(背景和文本)

Rad*_*ghe 3 css twitter-bootstrap bootstrap-modal

如何将引导程序模态标题背景更改为深蓝色,将文本更改为白色。小提琴在这里:

https://www.bootply.com/kzdpQurfsl

小智 5

您可以尝试使用以下 CSS:

.modal-header {
  background-color: darkblue;
  color: white;
}
Run Code Online (Sandbox Code Playgroud)

小提琴在这里