Recently, I have been exploring Twitter bootstrap and encountered an issue while trying to customize the progress bar. Despite my efforts, I am unable to display the progress bar on the screen.
Here is the code snippet that I have been working with. Despite numerous attempts, I cannot pinpoint what exactly is causing this problem. Could it be related to the version of Bootstrap that I am currently using?
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
HTML
<div class="progress">
<div class="bar" style="width: 60%;"></div>
</div>
CSS
.bar {
background-color: green;
}