gpt4 book ai didi

html - CSS body 属性需要使用 !important 关键字

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

我有以下 HTML 代码:

<!DOCTYPE html>
<html>
<head>
<title>Project Web</title>
</head>

<body>
<h1>Hello, World!</h1>
</body>

<link href="index_style.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
</html>

和以下 CSS(在 index_style.css 文件中):

body {
background-color: black !important;
color: white !important;
}

如您所知,“background-color”和“color”属性只有在它们后面跟有 !important 关键字时才会出现。为什么会这样?

最佳答案

您必须在 Bootstrap 代码之后包含您的index_style.css链接。

这是因为您的样式会被任何引导样式修改。

您想通过首先包括 Bootstrap 来设置默认值,而不是用您自己的代码更新这些属性。

这在 CSS 中称为优先级,一旦您理解了它的工作原理,它就会非常有用。

Precedence in CSS

我可以看到另一个关于你脚本顺序的问题,你的正确顺序应该是:

<!-- put these inside a <head></head> -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="index_style.css" rel="stylesheet">

<!-- put this just before closing </body> tag -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>

关于html - CSS body 属性需要使用 !important 关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46035614/

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