

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
CSS font-size-adjust Property
<p>Use the <em>font-size-adjus</em>t property to preserve the readability when font fallback occurs. You can try to run the following code to implement the font-size-adjust property:</p><h2>Example</h2><p><a class="demo" href="http://tpcg.io/edhgvt" rel="nofollow noopener noreferrer" target="_blank">Live Demo</a></p><pre class="prettyprint notranslate"><!DOCTYPE html> <html> <head> <style> #demo { font-size-adjust: 0.90; } </style> </head> <body> <h2>Heading Two</h2> <h2>With font-size-adjust property:</h2> <div class = "demo"> This is demo text. </div> <h2>Without font-size-adjust property:</h2> <div>This is demo text.</div> </body> </html></pre>
- Related Questions & Answers
- Font size adjust of an element with CSS
- Usage of font-size property in CSS
- Perform Animation on CSS font-size property
- Adjust gap size for CSS Grid
- Font Size in CSS
- Auto adjust font size in Seaborn heatmap using Matplotlib
- CSS font-kerning Property
- CSS font-variant Property
- Set the font size with CSS
- Set Responsive Font Size using CSS
- Set Font Size with Pixels using CSS
- Set Font Size with em using CSS
- Setting Font Size with Em in CSS
- Setting Font Size with Pixels in CSS
- Setting Font Size with Keywords in CSS
Advertisements