line-height in css

By: Prof. Dr. Fazal Rehman | Last updated: March 3, 2022

What is line-height in CSS?

It declares the line height for a line.   Example:
<html> <head> <style> .height_set { color : green; background : yellow; line-height : 200px; } </style> </head> <body> <h1 class=”height_set”>this is line-height</h1> </body> </html>
Output:
 

this is line-height

   
 

Leave a Comment

All Copyrights Reserved 2025 Reserved by T4Tutorials