Home  >  Article  >  Web Front-end  >  Set the height of a line of text using CSS

Set the height of a line of text using CSS

PHPz
PHPzforward
2023-08-25 15:45:061130browse

使用 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.

Example

<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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete