- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Add style to images with Bootstrap
The following classes are provided by Bootstrap to add style to images:
- .img-rounded − adds border-radius:6px to give the image rounded corners.
- .img-circle − makes the entire image round by adding border-radius:500px.
- .img-thumbnail − adds a bit of padding and a gray border
You can try to run the following code to add style to images
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Images</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <p>Styling images with Bootstrap</p> <img src = "/bootstrap/images/download.png" class = "img-rounded"> <img src = "/bootstrap/images/download.png" class = "img-circle"> <img src = "/bootstrap/images/download.png" class = "img-thumbnail"> </body> </html>
- Related Articles
- How to style images with CSS?
- Responsive Images in Bootstrap with Examples
- How to add visual effects to images with CSS?
- Style Bootstrap card with bg-info class
- Add Red label with Bootstrap
- Style Bootstrap 4 card with bg-primary class
- Style Bootstrap 4 cards with bg-danger class
- Style Bootstrap 4 cards with bg-dark class
- Style Bootstrap 4 card with bg-warning class
- Style Bootstrap 4 card with bg-success class
- Add information to the table row with Bootstrap
- Add the border to the table with Bootstrap
- Add denser information to a table with Bootstrap
- Add some emphasis to a paragraph with Bootstrap
- Add hover color to a table with Bootstrap

Advertisements