Articles on Trending Technologies

Technical articles with clear explanations and examples

Make an element look like a heading with Bootstrap

Daniol Thomas
Daniol Thomas
Updated on 11-Mar-2026 205 Views

To make an element look like a heading, you can try to run the following code −Example           Bootstrap Example                                          Planet          Earth          Asia          India          Hyderabad          Madhapur          

Read More

Set a light grey border to an element in Bootstrap 4

Kristi Castro
Kristi Castro
Updated on 11-Mar-2026 548 Views

To set a light grey border to an element, use the border border-light class in Bootstrap 4.Adding a light border is easy as shown below −   This element has light border You can try to run the following code to implement the border-light-class −Example       Bootstrap Example                             .demo {       width: 150px;       height: 220px;       margin: 15px;     }             Demo     This element has light border  

Read More

Image Thumbnail with Bootstrap

Lakshmi Srinivas
Lakshmi Srinivas
Updated on 11-Mar-2026 917 Views

To add a thumbnail to the image, use the .img-thumbnail Bootstrap class.You can try to run the following code to add a thumbnail to imagesExample           Bootstrap Images                                 Styling images with Bootstrap       Original Image             Thumbnail Image          

Read More

Bootstrap 4 .border-primary class

Kristi Castro
Kristi Castro
Updated on 11-Mar-2026 290 Views

Add a blue border to an element in Bootstrap 4 using the border-primary class as shown below:Set the class as −   Blue Border You can try to run the following code to implement the border-primary class −Example       Bootstrap Example                             .demo {       width: 250px;       height: 170px;       margin: 10px;     }             Demo Heading     Blue Border  

Read More

Add hover color to background color of the table row in Bootstrap

George John
George John
Updated on 11-Mar-2026 1K+ Views

To add hover color to background color of the table row, use the .active class in Bootstrap.Example           Bootstrap Example                                          Student Information                                                         Student                   Subject                                                                           Tom                   Maths                                                   Amit                   Programming                                                   Steve                   Java                                                

Read More

Bootstrap 4 .border-right-0 class

Kristi Castro
Kristi Castro
Updated on 11-Mar-2026 451 Views

Use the border-right-0 class in Bootstrap to remove the right border.To remove the right border −   Rectangle is missing the right border. Style the div as −.mystyle {   width: 350px;   height: 170px;   margin: 10px; }You can try to run the following code to implement the border-right- 0 class −Example   Bootstrap Example               .mystyle {     width: 350px;     height: 170px;     margin: 10px;   }         Heading Two     Rectangle is missing the right border.  

Read More

Fade in tab with Bootstrap

Krantik Chavan
Krantik Chavan
Updated on 11-Mar-2026 4K+ Views

Use the .in class in Bootstrap to fade in the tab.You can try to run the following code to fade in tab −Example           Bootstrap Example                                          Tutorials Website          The following is our learning content:                       Home             About             Product                                                Home                This is demo text!                                        About                This is demo text!                                        Product                This is demo text!                                

Read More

Bootstrap Event when the modal is about to be hidden

Kristi Castro
Kristi Castro
Updated on 11-Mar-2026 167 Views

The hide.bs.modal event in Bootstrap fires when the modal is about to be hidden.Firstly, hide the Bootstrap modal on button click −$("#button1").click(function(){   $("#newModal").modal("hide"); });Now, use the hide.bs.modal class and generate the alert when the modal is about to hide on button click −$("#newModal").on('hide.bs.modal', function () {   alert('The modal is about to be hidden.'); });Let us see an example stating the usage of hide.bs.modal event −Example       Bootstrap Example                             #button1 {       width: ...

Read More

Bootstrap class pull-left

Ankith Reddy
Ankith Reddy
Updated on 11-Mar-2026 643 Views

Float an element to the left with class pull-left.You can try to run the following code to implement the pull-left class −Example           Bootstrap Example                                          Float to left          

Read More

Add information to the table row with Bootstrap

Arjun Thakur
Arjun Thakur
Updated on 11-Mar-2026 489 Views

To add information to the table row in Bootstrap, use the .info class in Bootstrap −Example           Bootstrap Example                                          Rank of Cricketers          The following are the rank of cricketers:                                                         Cricketer                   Rank                                                                           Virat                   1                                                   David                   2                                                   Rohit                   3                                                   Kenn                   4                                                   Steve                   5                                                

Read More
Showing 30161–30170 of 61,297 articles
Advertisements