HTML <textarea> cols屬性用於告訴瀏覽器一行上應容納多少個average-width字符,即要顯示的列數。它用於指定<Textarea>元素的可見寬度。
用法:
<textarea cols="number">
屬性值:它包含值,即指定Textarea寬度的數字。它的默認值為20。
例:
<!-- HTML program to illustrate cols attribute -->
<!DOCTYPE html>
<html>
<head>
<title>
HTML Textarea cols Attribute
</title>
<style>
h1,
h2 {
text-align:center;
}
</style>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
HTML <textarea>cols Attribute
</h2>
<!-- Below textarea is
assigned a cols value 25
That is, 25 characters
will fit in a line -->
<textarea rows="4"
cols="25">
A computer science portal for geeks.
</textarea>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML <Textarea> cols屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML cols屬性用法及代碼示例
- HTML <frameset> cols屬性用法及代碼示例
- HTML Textarea cols用法及代碼示例
- HTML <map> name屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML <bdo> dir屬性用法及代碼示例
- HTML <li> value屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML <img> src屬性用法及代碼示例
- HTML rel屬性用法及代碼示例
- HTML src屬性用法及代碼示例
- HTML name屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML <a> rel屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <textarea> cols Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。