Web Development Articles

Page 733 of 801

Bootstrap 4 .flex-row class

Amit Diwan
Amit Diwan
Updated on 11-Mar-2026 355 Views

Use the flex-row class in Bootstrap to dispay flex items horizontally.Achieve the following using the flex-row class −Now add the flex-items in the class to allow horizontal alignment −   Audi   BMW   Benz You can try to run the following code to implement the flex-row class −Example       Bootstrap Example                             Flex Row          Audi      BMW      Benz      

Read More

Bootstrap 4 .card-footer class

Amit Diwan
Amit Diwan
Updated on 11-Mar-2026 1K+ Views

Use the card-footer class in Bootstrap 4 to set the footer of a Bootstrap card.Add it using the class −   Add footer message here The card-footer class comes after the card-header and card-body class −   Details   Timings: 4PM - 8PM   Reach before 4PM You can try to run the following code to implement the card-footer class −Example       Bootstrap Example                             Conference           Details       Timings: 4PM - 8PM       Reach before 4PM      

Read More

Allow wrapping of flex items in Bootstrap on different screens

Alex Onsman
Alex Onsman
Updated on 11-Mar-2026 1K+ Views

To allow wrapping of flex items on different screens, use the flex-*-wrap class. The flex-wrap for varied screen sizes work for small, medium, large and extra large screens.For example, use the flex-lg-wrap class to wrap flex items on large screen −For small screen −You can try to run the following code to implement the flex-*-wrap class to wrap flex items on small and large screen size −Example       Bootstrap Example                                         ...

Read More

Bootstrap 4 .flex-*-row class implementation

Amit Diwan
Amit Diwan
Updated on 11-Mar-2026 289 Views

To set flex items horizontally for different screen sizes like large, small, medium, etc, use the flex-*-row class.Let us see which flex-*-row class is used for different screen sizes −Small Screen Size: flex-sm-row Medium Screen Size: flex-md-row Large Screen Size: flex-lg-rowThe following is an example to set flex items horizontally for small screen size −   Audi   BMW   Benz You can try to run the following code to implement .flex-*-row class in Bootstrap 4 −Example       Bootstrap Example                       ...

Read More

Display flex items horizontally on a specific screen size in Bootstrap

Amit Diwan
Amit Diwan
Updated on 11-Mar-2026 730 Views

To set flex item horizontally in different screen size, use the flex-*-row class.The varied screen sizes is set for small, medium, large and extra large screen size. Let us see how to align flex items horizontally for small screen size −Flex Row (Small Screen)   Audi   BMW   Benz The following is an example to display flex items horizontally on different screen size −Example       Bootstrap Example                             Flex     ...

Read More

Bootstrap show.bs.popover event

Amit Diwan
Amit Diwan
Updated on 11-Mar-2026 263 Views

The show.bs.popover event fires when the popover is about to be visible.Fire the popover event −$("[data-toggle='popover']").on('show.bs.popover', function(){   alert('Popover is about to be visible!'); });You can try to run the following code to implement the show.bs.popover event −Example       Bootstrap Example                             Awards           Here's the list:       List           $(document).ready(function(){     $(".btn-default").click(function(){       $("[data-toggle='popover']").popover('show');     });     $("[data-toggle='popover']").on('show.bs.popover', function(){       alert('Popover is about to be visible!');     });   });

Read More

Show flex items horizontally in Bootstrap

Amit Diwan
Amit Diwan
Updated on 11-Mar-2026 236 Views

To show flex items horizontally, use the flex-row class.Add it to class −Now add flex items accordingly −   TCS   Wipro   Accenture   Gartner Here is the complete example to implement the flex items horizontally −Example       Bootstrap Example                             Companies           TCS       Wipro       Accenture       Gartner      

Read More

Show flex items right aligned and horizontally in Bootstrap

Amit Diwan
Amit Diwan
Updated on 11-Mar-2026 210 Views

If you want to display flex items right aligned, horizontally and reversed, then use the flex-row-reverse class.Use the class like the following code snippet −   ONE   TWO   THREE The following is an example to show reverse order of flex items −Example       Bootstrap Example                             Flex     Flex Row Reverse           ONE       TWO       THREE         Flex Row           ONE       TWO       THREE      

Read More

Align a flex item at the end in Bootstrap 4

Alex Onsman
Alex Onsman
Updated on 11-Mar-2026 805 Views

Use the .align-self-end class to align flex item at the end in Bootstrap 4.The following is my div −Now you need to set the flex items, wherein I am aligning the 3rd flex item −   Item 1   Item 2   Item 3   Item 4 You can try to run the following code to implement the align-self-end class −Example       Bootstrap Example                             Align Specific Flex Item from the end               Item 1         Item 2         Item 3         Item 4          

Read More

Bootstrap 4 .flex-*-row-reverse class implementation

Alex Onsman
Alex Onsman
Updated on 11-Mar-2026 471 Views

To implement the flex items to be displayed as reversed, horizontal and right-aligned on different screen sizes, use the flex-*-row-reverse.Different screen sizes are for small, medium, large, and extra large screens. Let us see how to set reverse flex items for small screen −   ONE   TWO   THREE You can try to run the following code to implement the flex-*-row-reverse class −Example       Bootstrap Example                             Flex Row     ...

Read More
Showing 7321–7330 of 8,010 articles
« Prev 1 731 732 733 734 735 801 Next »
Advertisements