

- 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
How to preserve the readability of text when font fallback occurs with JavaScript?
Use the fontSizeAdjust property to preserve the readability of text. It sets the aspect value of a font i.e. the difference between the size of lowercase and uppercase letters.
Example
You can try to run the following code to preserve the readability of text when font fallback occurs with JavaScript −
<!DOCTYPE html> <html> <body> <h1>Heading 1</h1> <p id="myID"> This is Demo Text. </p> <button type="button" onclick="display()">Set Aspect Value</button> <script> function display() { document.getElementById("myID").style.fontFamily = "verdana,sans-serif"; document.getElementById("myP").style.fontSizeAdjust = "0.90"; } </script> </body> </html>
- Related Questions & Answers
- How to preserve the readability when font fallback occurs with CSS
- How to set the font size of text with JavaScript?
- How to set the font family for text with JavaScript?
- How to change the font color of a text using JavaScript?
- How to change the font size of a text using JavaScript?
- How to preserve leading 0 with JavaScript numbers?
- How to set the boldness of the font with JavaScript?
- Which event occurs in JavaScript when the dragging of an element begins?
- How to create a small font text using JavaScript?
- How to create a big font text using JavaScript?
- How to increase the font size of a Text widget?
- How to increase the font size of text in Arduino IDE?
- How to return the color of the text with JavaScript?
- How to set font for text in JTextPane with Java?
- Which event occurs in JavaScript when the dragged element is over the target?
Advertisements