Found 700 Articles for Bootstrap

Stretch a flex item on different screens in Bootstrap 4

Ricky Barnes
Updated on 17-Jun-2020 11:18:03

67 Views

To stretch a flex item on different screens in Bootstrap 4, use the .align-self-*-stretch class.To strect in on different screens, you need to use align-self-sm-stretch, align-self-md-stretch, align-self-lg-stretch, etc. Below is an example for small screen size −   A-one   B-one   C-one   D-one You can try to run the following code to stretch a flex item on different screen sizes −ExampleLive Demo       Bootstrap Example                             Align Specific Flex Item and Stretch           A-one       B-one       C-one       D-one       Small Screen Size       A-one     B-one     C-one     D-one     Medium Screen Size         A-one     B-one     C-one     D-one     Large Screen Size         A-one     B-one     C-one     D-one      

Remove float from an element in Bootstrap

Alex Onsman
Updated on 17-Jun-2020 11:22:04

266 Views

Use the float-none class in Bootstrap to remove float from an element.The default for a text is always left; therefore removing float will place the text on the left −You can try to run the following code to remove float from an element −ExampleLive Demo       Bootstrap Example                             Demo           This text is on the left (on small screen).       This text is on the left (on medium screen).       This text is on the left (float removed).       This text is on the left (on extra large screen).       This text is on the left (float removed).    

Indicate danger with red outlined Bootstrap 4 Button

Alex Onsman
Updated on 17-Jun-2020 11:30:58

88 Views

Use the btn-outline-danger class in Bootsrap 4 to indicate danger with red outlined button.The following is an example to set a button that indicates danger with red outline −   Danger The class is added using the btn and btn-outline-danger class in Bootstrap −class="btn btn-outline-danger”Let us see an example to implement the btn-outline-danger class −ExampleLive Demo       Bootstrap Example                         Animals   Animals are in danger. To know what, you need to click below:   Danger

Set warning action with orange outlined Bootstrap 4 Button

Alex Onsman
Updated on 17-Jun-2020 11:34:25

172 Views

Set orange outline for a Bootstrap 4 button, using the btn-outline-warning class and indicate warning action.The following includes the orange outline on a button −   Rejected The class is added just as any other class added to any element in Bootstrap.  For a Bootstrap button, I used the element.You can try to run the following code to implement the btn-outline-warning class −ExampleLive Demo       Bootstrap Example                       College Placements   Selected Students   Rejected Students   Result Awaited List of selected and rejected students: Selected Rejected

Add information with Bootstrap 4 card

Alex Onsman
Updated on 17-Jun-2020 11:35:57

78 Views

To add information to a card in Bootstrap 4, use the bg-info class.Use the card class with the bg-info class:Add the card body after that using the card-body class −   Demo Text You can try to run the following code to add information −ExampleLive Demo       Bootstrap Example                         Festival Celebration       Reach till 5PM  

Place the image at the top inside a Bootstrap 4 card

Alex Onsman
Updated on 17-Jun-2020 11:38:04

68 Views

Use the card-img-top class in Bootstrap 4, to set the image at the top inside a card in Bootstrap 4 −Add the image inside the card class −Now add the card body that includes title and text −   Swift 4   Learn Swift 4   Begin The following is an example to place an image at the top inside a Bootstrap 4 card −ExampleLive Demo       Bootstrap Example                             SWIFT 4 Tutorial     Video Tutorial on Switft 4                         Swift 4         Learn Swift 4         Begin            

Form the element as a circle in Bootstrap

Alex Onsman
Updated on 17-Jun-2020 11:39:43

338 Views

To form an element as a circle, use the .rounded-circle class in Bootstrap.It is easy to implement it −Let us see an example to create a circle in Bootstrap −ExampleLive Demo       Bootstrap Example                             .test {       width: 300px;       height: 300px;       background-color: orange;     }           Circle     We have a circle below:      

Bootstrap 4 .border-white class

Alex Onsman
Updated on 17-Jun-2020 11:41:54

108 Views

To set white border to an element, use the border-white class.Add white border −   This has white border Above, I have also added a style to set the div element −.mystyle {   width: 200px;   height: 100px;   margin: 10px;   background: blue; }Let us see an eample to implement the border-white class in Bootstrap −ExampleLive Demo       Bootstrap Example                             .mystyle {       width: 200px;       height: 100px;       margin: 10px;       background: blue;     }         The following are two Rectangles:   This has white border   This has orange border

Bootstrap 4 .card-img-top class

Alex Onsman
Updated on 17-Jun-2020 11:54:35

625 Views

Use the card-img-top class in Bootstrap to set the image at the top inside a card −After that add the card and card body −   Swift 4   Learn Swift 4   Begin You can try to run the following code to implement the card-img-top class in Bootstrap 4 −ExampleLive Demo       Bootstrap Example                             SWIFT 4 Tutorial     Video Tutorial on Switft 4                         Swift 4         Learn Swift 4         Begin            

Turn an image into a Bootstrap 4 card background

Alex Onsman
Updated on 17-Jun-2020 11:04:37

3K+ Views

Use the card-img-overlay class to turn an image into a card background.You need to first set the element and then use the card-img-overlay class as in the following code snippet −         Avro     Tutorial for Apache Avro     Learn   Let us see an example to learn how to turn an image into a Bootstrap card background −ExampleLive Demo       Bootstrap Example                         Apach - Tool for Hadoop                 Avro       Tutorial for Apache Avro       Learn      

Advertisements