<head>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
**<style>
.navbar-brand{
color:red;
}**
</style>
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
**<a class="navbar-brand" href="index.html">Test</a>**
</div>
</nav>
</div>
</body>
我想将文本的颜色更改为红色,但它不起作用。 如果我将“测试”放在跨度中并将样式设置为跨度,它将起作用。
答案 0 :(得分:1)
<style>
.navbar-brand{
color:red !important;
}
</style>
只需将!important添加到css颜色属性的末尾。
EDITED
当使用!important时,其关联的属性和值将覆盖所有其他矛盾的CSS,无论它在哪里。
答案 1 :(得分:0)
尝试使用自助,因为您将.btn-danger
应用于<div class=" btn-danger navbar-header">