最新的Web開發教程
 

HTML <textarea> cols Attribute

<HTML <textarea>標籤

與指定的高度和寬度的文本區域:

<textarea rows="4" cols="50">
At w3ii.com you will learn how to make a website. We offer free tutorials in all web development technologies.
</textarea>
試一試»

定義和用法

cols屬性指定文本區域的可見寬度。

提示:一個文本區域的大小也可以通過CSS的高度和寬度屬性設置。


瀏覽器支持

屬性
cols

HTML 4.01和HTML5之間的差異

沒有。


句法

<textarea cols="number">

屬性值

描述
number 指定文本區域的寬度(在平均字符寬度)。 默認值是20

<HTML <textarea>標籤