當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。