HTML <input> align屬性與<input type =” image”>一起使用以設置圖像的水平對齊方式。 HTML 5不支持它。
用法:
<input align="left|right|middle|top|bottom">
屬性值:
- left:它將圖像的對齊方式設置為左側。
- right:它將圖像的對齊設置在右側。
- middle:它將圖像的對齊方式設置為中間。
- top:它將圖像的對齊方式設置為頂部。
- bottom:它將圖像的對齊方式設置為底部。
範例1:
<!DOCTYPE html>
<html>
<head>
<title>
HTML input align Attribute
</title>
</head>
<body>
<h1 style="color:green;">GeeksforGeeks</h1>
<h3>HTML input align Attribute</h3>
<input type="image" src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190506164011/logo3.png"
alt="GeeksforGeeks logo" align="right">
</body>
</html>
輸出:
範例2:
<!DOCTYPE html>
<html>
<head>
<title>
HTML input align Attribute
</title>
</head>
<body>
<center>
<h1 style="color:green;">GeeksforGeeks</h1>
<h3>HTML input align Attribute</h3>
</center>
<div>
Email_id:
<!--Here type="text" align will not work-->
<input type="text" alt="mail_id" align="right">
<input type="image" src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190506164011/logo3.png"
alt="GeeksforGeeks" align="right">
</div>
</body>
</html>
輸出:
注意:由於HTML5不支持<input type =” image”>,因此您可以在此處使用CSS代替此屬性。 CSS <input type =“ image” style =“ float:right”>的語法。支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Safari
- Opera
相關用法
- HTML <p> align屬性用法及代碼示例
- HTML <th> align屬性用法及代碼示例
- HTML <col> align屬性用法及代碼示例
- HTML <tr> align屬性用法及代碼示例
- HTML <img> align屬性用法及代碼示例
- HTML <td> align屬性用法及代碼示例
- HTML <div> align屬性用法及代碼示例
- HTML <object> align屬性用法及代碼示例
- HTML <legend> align屬性用法及代碼示例
- HTML <tbody> align屬性用法及代碼示例
- HTML <caption> align屬性用法及代碼示例
- HTML <thead> align屬性用法及代碼示例
- HTML <tfoot> align屬性用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 HTML | <input> align Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。