gpt4 book ai didi

html - 如何使用自定义的 style.css 覆盖 Bootstrap ?

转载 作者:行者123 更新时间:2023-11-28 02:32:57 26 4
gpt4 key购买 nike

我试图覆盖一些 Bootstraps 的样式以创建特定的外观。有人向我解释说,只要我的自定义 style.css 链接在 Bootstrap CDN 之后,就可以了。

然而,事实似乎并非如此。

以下是我的index.html:

    <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Nathan Coder</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>

<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">

<a class="navbar-brand" href="index.html" style="margin-left: 100px;">Nathan Coder</a>
</div>

<ul class="nav navbar-nav navbar-right">
<li><a href="#">About</a></li>
<li><a href="#">|</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">|</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>

</body>
</html>

这是我的 style.css:

nav {
border-bottom: 3px;
border-color: #4aaaa5;
}

.navbar-brand {
color: #4aaaa5;
background-color: #ffffff;
font-size: 150%;
font-family: 'Georgia', Times, Times New Roman, serif;
padding: 20px;
}

而且它无法正常工作。有什么提示吗?

最佳答案

首先,确保您在 CSS bootsrap 之后列在头部。然后,尝试用body class和preant div class标记它

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">

body.class_name nav {
border-bottom: 3px;
border-color: #4aaaa5;
}
or
div.class_name nav {
border-bottom: 3px;
border-color: #4aaaa5;
}

关于html - 如何使用自定义的 style.css 覆盖 Bootstrap ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47603922/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com