Animate a Striped Progress Bar in Bootstrap

Lakshmi Srinivas
Updated on 12-Jun-2020 20:00:36

518 Views

To animate a striped progress bar, use the .active class with the .progress-bar class in Bootstrap.You can try to run the following code to animate a striped progress barExampleLive Demo           Bootstrap Example                                          Level          The level of water in meters:                                      20%                                

Set the Width of an Element to 50% in Bootstrap 4

Chandu yadav
Updated on 12-Jun-2020 19:57:10

1K+ Views

To set the width of an element to 50%, use the .w-50 class in Bootstrap.You can try to run the following code to set element’s width −ExampleLive Demo            Bootstrap Example                                          Set element width          Normal width          Width is 50%          

Remove Shadow of an Element in Bootstrap 4

Nishtha Thakur
Updated on 12-Jun-2020 19:54:49

2K+ Views

Use the .shadow-none class in Bootstrap to remove shadow.You can try to run the following code to remove an element’s shadow −ExampleLive Demo           Bootstrap Example                                                      Learning          Learn Tutorials for free          Play Quiz and check your knowledge          

Add Small Shadow to an Element in Bootstrap 4

Samual Sam
Updated on 12-Jun-2020 19:49:59

159 Views

Use the .shadow-sm class in Bootstrap 4 to add a small shadow to an element.You can try to run the following code to implement the shadow-sm class in BootstrapExampleLive Demo           Bootstrap Example                                          Learning          Try programming examples          Learn from Tutorials          Play Quiz and check your knowledge          

Bootstrap Filter List

Chandu yadav
Updated on 12-Jun-2020 19:45:20

3K+ Views

To create a filter list, use the .list-group class in Bootstrap.You can try to run the following code to create a filter list −ExampleLive Demo           Bootstrap Example                                          Tutorials                                           Java             jQuery             PHP             AngularJS             Ruby             C                                $(document).ready(function(){             $("#demo").on("keyup", function() {                var value = $(this).val().toLowerCase();                $("#newList li").filter(function() {                   $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)                });             });          });          

Usage of Bootstrap Media Objects

Lakshmi Srinivas
Updated on 12-Jun-2020 19:43:30

161 Views

The media object is to make the code for developing blocks of information drastically shorter.You can try to run the following code to implement media objectsExampleLive Demo           Bootstrap Example                                                                                       Media heading             This is some sample text. This is some sample ... Read More

Filter Table with Bootstrap

Nishtha Thakur
Updated on 12-Jun-2020 19:42:29

3K+ Views

To filter a table in Bootstrap, you can try to run the following code −ExampleLive Demo           Bootstrap Example                                          Students Rank                                                                          Name                Marks                Rank                                                                           Amit                   94                   1                                                   Tom                   90                   2                                                   Steve                   88                   3                                                   Chris                   80                   4                                                   Corey                   79                   5                                                   Glenn                   75                   6                                                            $(document).ready(function(){             $("#demo").on("keyup", function() {                var value = $(this).val().toLowerCase();                $("#test tr").filter(function() {                   $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)                });             });          });          

Bootstrap Responsive Utility Classes

Samual Sam
Updated on 12-Jun-2020 19:40:16

258 Views

The following are the classes available for responsive utility classes in Bootstrap −ClassesDevices.visible-xsExtra small (less than 768px) visible.visible-smSmall (up to 768 px) visible.visible-mdMedium (768 px to 991 px) visible.visible-lgLarger (992 px and above) visible.hidden-xsExtra small (less than 768px) hidden.hidden-smSmall (up to 768 px) hidden.hidden-mdMedium (768 px to 991 px) hidden.hidden-lgLarger (992 px and above) hidden

Create a Bootstrap Media List

Arjun Thakur
Updated on 12-Jun-2020 19:38:23

308 Views

To create a Bootstrap media list in Bootstrap, you can try to run the following code −ExampleLive Demo           Bootstrap Example                                                                                                              Media heading                       ... Read More

Bootstrap Well Class

Ankith Reddy
Updated on 12-Jun-2020 19:37:02

231 Views

A well is a container in that causes the content to appear sunken or an inset effect on the page. To create a well, simply wrap the content that you would like to appear in the well with a containing the class of .well.You can try to run the following code to implement well class in Bootstrap −ExampleLive Demo           Bootstrap Example                                 This is demo text!    

Advertisements