我正在尝试更改bootstrap 4下拉导航的背景和字体颜色。
我尝试使用
.nav.nav-tabs > li.dropdown.active.open > a,
.nav.nav-tabs > li.dropdown.active.open > ul.dropdown-menu a:hover,
.nav.nav-tabs > li.dropdown.open > a,
.nav.nav-tabs > li.dropdown.open > ul.dropdown-menu a:hover
{
color: #fff;
background-color: #b91773;
border-color: #fff;
}
但这对我来说效果不佳。这是我的HTML:
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="http://example.com" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
Dropdown link
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
答案 0 :(得分:11)
.dropdown {list-style: none; background: green; padding: 10px; display: inline-block;}
.dropdown .nav-link {color:#fff; text-decoration: none;}
.dropdown .dropdown-menu a{color: #000; text-decoration: none;}
.dropdown .btn {background: green; color:#fff;}
.dropdown .btn:hover {background: cyan; color:#000;}
.dropdown .btn:active {background: cyan; color:#000;}
.dropdown .btn:focus {background: cyan; color:#000;}
.dropdown-menu .dropdown-item {display: inline-block; width: 100%; padding: 10px 5px;}
.container .dropdown .dropdown-menu a:hover
{
color: #fff;
background-color: #b91773;
border-color: #fff;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="http://example.com" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
Dropdown link
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
</div>
</body>
</html>
这是一些代码,希望它能帮到你。
<强>被修改强>
现在工作正常
答案 1 :(得分:7)
我知道已经回答了这个问题,但是由于我已将其添加为书签,因此我想提供theming Bootsrap使用Sass和NPM时适用于我的解决方案。
请注意,我在自定义函数上方包含函数和变量,因为我需要访问它们,否则编译将失败。 Read more about it on this issue。
假设您的_custom.scss
是这样的:
@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";
// Add your custom variables here
@import "~bootstrap/scss/bootstrap";
然后,您可以转到Bootstrap's main variables file,然后复制要覆盖的内容。
例如,如果我希望下拉链接的背景为白色链接的深色背景,我会这样做:
$dropdown-bg: $dark;
$dropdown-link-color: $light;
更改后我的_custom.scss
文件如下:
@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";
// Add your custom variables here
$dropdown-bg: $dark;
$dropdown-link-color: $light;
@import "~bootstrap/scss/bootstrap";
这是编译Sass后的图像:
这样,我不会覆盖CSS规则,以避免不必要的混乱。
答案 2 :(得分:0)
在Bootstrap v4.3.1
中,我只是从浏览器CSS path
复制developer tools
,并将其添加到我的Website.css
中,并为其添加了一些样式,从而在外观和感觉上我正在建立的网站上:
/*drop-down override*/
div.btn-group.show div.dropdown-menu.show {
background-color: #4b4b4b;
}
div.btn-group.show div.dropdown-menu.show button.dropdown-item {
color: #e1e1e1;
}
div.btn-group.show div.dropdown-menu.show div.dropdown-divider {
border-top: 1px solid rgba(50, 50, 50, 0.9);
}
div.btn-group.show div.dropdown-menu.show button.dropdown-item:hover,
div.btn-group.show div.dropdown-menu.show button.dropdown-item:focus {
background-color: #1e1e1e;
color: #f0f0f0;
}
结果应如下所示: