Ricky Barnes has Published 121 Articles

Bootstrap 4 .flex-*-column-reverse class

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 12:30:39

716 Views

Use the flex-*-column-reverse class to display flex items vertically and reversed on different screen sizes.Here’s the example of reversing flex items on medium device using “flex-md-column-reverse” class −   One   Two   Three In the same way, set for large devices using “flex-lg-column-reverse” class −   One   Two ... Read More

Set a grey border to an element in Bootstrap 4

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 12:28:08

345 Views

Set a grey border to an element, using the border-secondary class in Bootstrap 4.Add it like the following example − I have also included the “mystyle” class to style the div − .mystyle {   width: 250px;   height: 150px;   margin: 10px; } Let us see an example to ... Read More

Display flex items vertically and reversed in Bootstrap 4

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 11:14:29

74 Views

The flex-column-reverse is used to display reversed flex items with vertical orientation. Add the flex-column-reverse class as in the following code snippet −After that, add flex items inside it −   Demo 1   Demo 2   Demo 3 You can try to run the following code to show flex ... Read More

Align gathered items from the start in different screens in Bootstrap 4

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 11:10:41

57 Views

To align gathered items from the start in different screens, use the .align-content-*-start class.Align the items as shown below in different screen sizes −Medium Screen Size   Work 1   Work 2   Work 3   Work 4   Work 5 Large Screen Size   Work 1   Work 2 ... Read More

Set positive success action with green outlined Bootstrap 4 Button

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 11:06:38

85 Views

To set an outline on a button that indicates positive action, you need to use the btn-outline-success class in Bootstrap.Here is how you can set it:   More (Green Outline) You can try to run the following code to implement the btn-outline-success class −ExampleLive Demo       ... Read More

Align gathered items at the end in Bootstrap 4

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 10:58:08

178 Views

Use .align-content-end class to align gathered items at the end in Bootstrap 4.To set the items at the end −

Bootstrap hide.bs.tooltip event

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 10:55:58

127 Views

The hide.bs.tooltip event in Bootstrap fires when the tooltip is about to be hidden.Click the hide button first −$(".btn-default").click(function(){   $("[data-toggle='tooltip']").tooltip('hide'); });On clicking above the hide.bs.tooltip event fires and an alert generates −$("[data-toggle='tooltip']").on('hide.bs.tooltip', function(){   alert('Tooltip will hide now.'); });You can try to run the following code to implement the ... Read More

Align a flex item from the start on different screens in Bootstrap 4

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 10:53:26

77 Views

Use the .align-self-*-start class in Bootstrap 4 to align a flex item from the start on different screens.To align a flex item on different screens −Small Screen   Item 1   Item 2   Item 3   Item 4 Large Screen   Item 1   Item 2   Item 3 ... Read More

Dark grey outlined Bootstrap 4 Button

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 10:51:18

251 Views

To set dark grey outlined border to a button, use the btn-outline-dark class.Include the brn-outline-dark class as if you add any other class to an element. Here, we have the button element since we want a dark grey outline for our button:   Dark gray outline Let us see an ... Read More

Bootstrap 4 Button .btn-outline-primary class

Ricky Barnes

Ricky Barnes

Updated on 16-Jun-2020 10:44:09

227 Views

The btn-outline-primary class is used in Bootstrap 4 to set blue outlined button.Add blue outline to the button using the btn-outline-primary class as shown in the following code snippet −   Result You can try to run the following code to implement the btn-outline-primary class −ExampleLive Demo   ... Read More

Previous 1 ... 4 5 6 7 8 ... 13 Next
Advertisements