- 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
Display text inside an element in a smaller font size with Bootstrap
Use the .initialism class in Bootstrap to show text inside an <abbr> element. This allows setting smaller font size in Bootstrap −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</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> <div class="container"> <h2>Cricket</h2> <p>The <abbr title = "International Cricket Council">ICC</abbr> governs cricket boards.</p> <p>The <abbr title = "International Cricket Council" class = "initialism">ICC</abbr> was founded as the Imperial Cricket Conference in 1909</p> <p>Above the ICC abbreviation text is displayed with a smaller font.</p> </div> </body> </html>
- Related Articles
- Font size adjust of an element with CSS
- Increase the font size of a paragraph with Bootstrap
- Align an element with the bottom of the parent element's font in Bootstrap 4
- Align an element with the top of the parent element's font in Bootstrap 4
- How to set the font size of text with JavaScript?
- Disable text wrapping inside an element using CSS
- How to display the different font items inside a JComboBox in Java?
- Item text inside the list group in Bootstrap
- How to change text inside an element using jQuery?
- Select and Deselect Text Inside an Element using JavaScript
- HTML5 Canvas Text Stroke for Large Font Size
- How to increase the font size of a Text widget?
- Bootstrap 3 truncate long text inside rows of a table in a responsive way with HTML
- How to change the font size of a text using JavaScript?
- Make an element invisible with Bootstrap

Advertisements