- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Create a striped Bootstrap progress bar
Follow the below given steps to create a striped progress bar in Bootstrap −
- Add a <div> with a class of .progress and .progress-striped.
- Next, inside the above <div>, add an empty <div> with a class of .progress-bar and class progress-bar-* where * could be success, info, warning, danger.
- Add a style attribute with the width expressed as a percentage. Say, for example, style = "60%"; indicates that the progress bar was at 60%.
You can try to run the following code to form a striped progress bar −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <h2>Striped Progress Bars</h2> <h3>Warning Progress Bar</h3> <div class = "progress progress-striped"> <div class = "progress-bar progress-bar-warning" role = "progressbar" aria-valuenow = "45" aria-valuemin = "0" aria-valuemax = "100" style="width: 45%;"> <span class = "sr-only">45%Complete (warning)</span> </div> </div> <h3>Danger Progress Bar</h3> <div class = "progress progress-striped"> <div class = "progress-bar progress-bar-danger" role = "progressbar" aria-valuenow = "80" aria-valuemin = "0" aria-valuemax = "100" style = "width: 80%;"> <span class = "sr-only">80% Complete (danger)</span> </div> </div> </body> </html>
- Related Articles
- Animate a striped progress bar in Bootstrap
- Bootstrap progress-striped class
- Create a progress bar with Bootstrap
- Create a Bootstrap progress bar with different styles
- Bootstrap progress-bar class
- Animate Bootstrap progress bar
- Create circular Progress Bar in iOS
- How to create a progress bar in HTML?
- How to create a progress bar using JavaFX?
- How to create progress bar in ReactJS?
- How to create a download progress bar in Tkinter?
- Striped Table with Bootstrap
- Bootstrap table-striped class
- Bootstrap progress class
- Custom progress Bar in Android?

Advertisements