HTML - rows 属性



HTML rows 属性用于指定文本区域的高度(以行数计)。

<textarea> 元素是一个多行纯文本编辑控件,当您希望用户输入大量自由格式文本时很有用。

文本区域的大小也可以通过 CSS 的 height 和 width 属性来指定。

语法

<textarea rows="5" >

其中 rows="5" 指定文本区域占用 5 行来编写段落或其他内容。

应用于

以下列出的元素允许使用 HTML rows 属性。

元素 描述
<textarea> HTML <textarea> 标签用于表示多行纯文本编辑控件。

HTML rows 属性示例

以下示例将说明 HTML rows 属性,以及我们应该在哪里以及如何使用此属性!

指定高度宽度文本区域

输出窗口显示具有三行可见行的文本区域。

<!DOCTYPE html>
<html>

<head>
   <title>HTML rows Attribute</title>
</head>

<body>
   <h2>HTML rows Attribute</h2>
   <textarea rows="3">
      The only real mistake is the one 
      from which we learn nothing.
   </textarea>
   <p>
      This textarea has 3 visible rows.
   </p>
   <p>
      You can change that by changing 
      the value of the "rows" attribute. 
   </p>
</body>

</html>

使用内部 CSS 覆盖 rows 属性

输出窗口显示具有 style 标签中给定尺寸的文本区域。这将覆盖文本区域中提到的 rows 属性。

<!DOCTYPE html>
<html>

<head>
   <title>HTML rows Attribute</title>
   <style>
      textarea {
         height: 8em;
         width: 15em;
      }
   </style>
</head>

<body>
   <h2>HTML rows Attribute</h2>
   <textarea rows=2>
      The only real mistake is the one 
      from which we learn nothing.
   </textarea>
   <p>
      You can change height of the text area by 
      changing the value of the height in the CSS. 
   </p>
</body>

</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
rows
html_attributes_reference.htm
广告