Complete the code to create a basic Bootstrap progress bar with 50% completion.
<div class="progress"> <div class="progress-bar" role="progressbar" style="[1]" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100">50%</div> </div>
The style attribute sets the width of the progress bar. For 50% completion, use width: 50%.
Complete the code to add the Bootstrap class that makes the progress bar striped.
<div class="progress"> <div class="progress-bar [1]" role="progressbar" style="width: 60%;" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100">60%</div> </div>
The class progress-bar-striped adds stripes to the progress bar for a visual effect.
Fix the error in the code by completing the class name to animate the progress bar.
<div class="progress"> <div class="progress-bar progress-bar-striped [1]" role="progressbar" style="width: 70%;" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">70%</div> </div>
The class progress-bar-animated makes the striped progress bar animate smoothly.
Fill both blanks to create a progress bar with 40% width and a success color.
<div class="progress"> <div class="progress-bar [1]" role="progressbar" style="[2]" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100">40%</div> </div>
Use bg-success for green color and width: 40% to set the progress bar's fill to 40%.
Fill all three blanks to create a striped, animated, warning-colored progress bar at 80%.
<div class="progress"> <div class="progress-bar [1] [2] [3]" role="progressbar" style="width: 80%;" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100">80%</div> </div>
Combine progress-bar-striped and progress-bar-animated for the striped animation effect, and bg-warning for the yellow warning color.