当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML <textarea> cols属性用法及代码示例


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


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <textarea> cols Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。