嗨,我是新手,我面临一个问题,这是我的代码

<!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要求使用HTML5文档类型


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


  HTML5不支持bgcolor属性。改用CSS。


因此,基本上,如果您正在使用引导程序,则必须在CSS中定义背景色,因为您必须使用html5 doctype(它不支持body标签的bgcolor属性)。

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

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

10-12 16:27