Home > Article > Web Front-end > Set the height of a line of text using CSS
#line-height property is used to set the height of the text line. The value of the line-height attribute can be a number, length, or percentage.
<html> <head> </head> <body> <p style = "width:300px; height:100px; border:2px solid green; padding:5px; margin:10px; line-height:30px;"> This paragraph is 300 pixels wide and 100 pixels high and here line height is 50 pixels. </p> </body> </html>
The above is the detailed content of Set the height of a line of text using CSS. For more information, please follow other related articles on the PHP Chinese website!