Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的网站使用引导程序,我认为黑色标题不好,字体太小。如何自定义引导程序的标题?有什么例子吗?
最好只覆盖类/ID。
先声明引导程序,然后声明你自己的 css
<link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/mystyle.css" rel="stylesheet">
在您的 mystyle.css 中,您可以:
header,.header,#header{ background: red; color: white; font-size: 15px; }