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


HTML <input> width屬性用法及代碼示例


HTML <input> width屬性用於指定<input>元素的寬度。該屬性僅用於輸入類型=“ image”。

用法:

<input width="pixels"> 

屬性值:它包含值,即指定輸入元素寬度的像素。


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML Input Image Attribute 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1> 
  
    <h2>HTML Input image Attribute</h2> 
    <input id="myImage" 
           type="image" 
           src= 
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
           alt="Submit"
           width="70" 
           height="48" /> 
  
</body> 
  
</html>

輸出:

支持的瀏覽器:

  • 穀歌瀏覽器1.0
  • Firefox 16.0
  • Edge
  • Opera 1.0
  • 蘋果Safari


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <input> width Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。