Hey there, I'm a newcomer to bootstrap and am encountering an issue. Here is the code I'm working with:
<!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>
I am attempting to change the background color using:
<body bgcolor="red">
However, for some reason this code isn't working and only inline CSS is functioning:
style="background-color:red;"
Does anyone have a solution?