- 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
Bootstrap element styling
Bootstrap styles <abbr> elements with a light dotted border along the bottom and reveal the full text on hover.
The HTML <abbr> element provides markup for abbreviations or acronyms, such as NASA, HTTPS, ICC, etc.
You can try to run the following to understand how Bootstrap styles the <abbr> element −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap abbr styling</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> </head> <body> <abbr title = "National Aeronautics and Space Administration">NASA</abbr><br> <abbr title = "International Cricket Council">ICC</abbr> </body> </html>
- Related Articles
- Bootstrap code tag styling
- Bootstrap pre tag styling
- Bootstrap element
- Center any element in Bootstrap
- Styling in React.js
- Set element to center with Bootstrap
- Make an element invisible with Bootstrap
- Styling Tables with CSS
- Styling Lists with CSS
- Styling Links with CSS
- Styling Lists in CSS
- Remove borders from an element in Bootstrap
- Remove float from an element in Bootstrap
- Create a block element with Bootstrap 4
- Styling Links Working with CSS

Advertisements