
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Usage of Bootstrap Thumbnail
With the thumbnail class in Bootstrap, you can easily create a thumbnail.
Follow the below-given steps &minus −
- Add an <a> tag with the class of .thumbnail around an image.
- This adds four pixels of padding and a gray border.
- On hover, an animated glow outlines the image.
You can try to run the following code to create thumbnail −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href="/https/www.tutorialspoint.com/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "row"> <div class = "col-sm-6 col-md-3"> <a href = "#" class = "thumbnail"> <img src = "https://www.tutorialspoint.com/angular4/images/angular-4-mini-logo.jpg" alt = "Angular"> </a> </div> </div> </body> </html>
Advertisements