HTML textarea rows屬性用於指定控件的可見文本行數,即要顯示的行數。它還指定了Textarea的可見高度。
用法:
<textarea rows = "value">
屬性值:
- number:它指定Textarea的高度。其默認值為2。
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML Textarea rows Attribute
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
HTML Textarea rows Attribute
</h2>
<!-- Below textarea element has rows
attribute assigned to 5 -->
<textarea rows="5" cols="23">
This paragraph has number
of rows equal to 5.
</textarea>
</center>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML textarea rows屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- 蘋果Safari
- Opera
相關用法
- HTML rows屬性用法及代碼示例
- HTML <frameset> rows屬性用法及代碼示例
- HTML Textarea rows用法及代碼示例
- HTML max屬性用法及代碼示例
- HTML <img> src屬性用法及代碼示例
- HTML <a> rel屬性用法及代碼示例
- HTML <bdo> dir屬性用法及代碼示例
- HTML <map> name屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML src屬性用法及代碼示例
- HTML alt屬性用法及代碼示例
- HTML dir屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <textarea> rows Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。