我最近刚刚在我的网站上安装了 bootstrap 3.0 并且一直在玩。我有几个关于它的问题;
我想在我自己的 .css 文件中更改 jumbotron(和其他类)的某些规范。我有一个名为“mycss.css”的文件,并在其中添加了以下代码
.jumbotron {
background-image: url();
padding: 30px;
margin-bottom: 30px;
font-size: 21px;
font-weight: 200;
line-height: 2.1428571435;
color: inherit;
background-color: #eeeeee;
}
在我的 index.htm 中,我声明了我的 .css 如下(在 bootstrap.min.css 声明之后);
<link href="css/my.css" rel="stylesheet" media="screen">
但是,这些更改并未反映在我的网站上。还有什么我需要改变的吗?