
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
Set Responsive Font Size using CSS
To set the responsive font size, use the ‘viewport width’ and set it to ‘vw’ unit. You can try to run the following code to use ‘vw’ unit −
Example
<!DOCTYPE html> <html> <head> <style> h1 { font-size:8vw; } </style> </head> <body> <h1>This is demo heading</h1> <p>This is demo text.</p> </body> </html>
Advertisements