gpt4 book ai didi

html - bgcolor 属性不适用于 Bootstrap

转载 作者:太空宇宙 更新时间:2023-11-04 05:39:55 25 4
gpt4 key购买 nike

嗨,我是 bootstrap 的新手,我遇到了一个问题,这是我的代码

<!DOCTYPE html>

<head>
<title>Bootstrap Progress Bar</title>
<meta charset="utf-8">

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
</head>

<body bgcolor="red">

<p>Progress Bar</p>
<div class="container">
<div class="progress bg-danger">
<div class="progress-bar bg-success text-center" style="width:77%;">11
</div>

</div>
</div>
</body>
</html>

我想改变背景颜色

<body bgcolor="red"> 

但我不知道为什么这段代码不能只使用内联 css

style="background-color:red;"

有什么解决办法吗?

最佳答案

来自 https://getbootstrap.com/docs/4.3/getting-started/introduction/

Bootstrap requires the use of the HTML5 doctype

来自 https://www.w3schools.com/tags/att_body_bgcolor.asp

The bgcolor attribute is not supported in HTML5. Use CSS instead.

所以基本上,如果您使用的是 bootstrap,则需要在 css 中定义背景颜色,因为您必须使用 html5 doctype(不支持 body 标签的 bgcolor 属性)。

希望这可以帮助您更好地了解您的情况。

关于html - bgcolor 属性不适用于 Bootstrap ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59311405/

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