HTML <object> align屬性用於指定對象Element的對齊方式。它是一個內聯元素,表示無法在頁麵上插入新行。文本和其他元素也可以環繞它。
用法:
<object align="left | right | middle | top | bottom">
屬性值:
- left:它將對象設置為left-align。
- right:它將對象設置為right-align。
- middle:它將對象設置在中間。
- top:它將對象設置為top-align。
- Bottom:它將對象設置為底部對齊。
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML object align Attribute
</title>
</head>
<body style="text-align:center;">
<h2>HTML object align Attribute</h2>
<object id="myobject"
width="200"
height="100"
align="left"
data=
"https://cdncontribute.geeksforgeeks.org/wp-content/uploads/geek-8.png">
</object>
<object id="myobject"
width="200"
height="100"
align="right"
data=
"https://cdncontribute.geeksforgeeks.org/wp-content/uploads/geek-8.png">
</object>
<object id="myobject"
width="200"
height="100"
align="middle"
data=
"https://cdncontribute.geeksforgeeks.org/wp-content/uploads/geek-8.png">
</object>
<object id="myobject"
width="200"
height="100"
align="top"
data=
"https://cdncontribute.geeksforgeeks.org/wp-content/uploads/geek-8.png">
</object>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML對象align屬性支持的瀏覽器:
- 穀歌瀏覽器10.0
- Internet Explorer 10.0
- Firefox 4.0
- Opera 10.6
相關用法
- HTML <p> align屬性用法及代碼示例
- HTML <th> align屬性用法及代碼示例
- HTML <col> align屬性用法及代碼示例
- HTML <tr> align屬性用法及代碼示例
- HTML <img> align屬性用法及代碼示例
- HTML <td> align屬性用法及代碼示例
- HTML <div> align屬性用法及代碼示例
- HTML <legend> align屬性用法及代碼示例
- HTML <tbody> align屬性用法及代碼示例
- HTML <caption> align屬性用法及代碼示例
- HTML <thead> align屬性用法及代碼示例
- HTML <tfoot> align屬性用法及代碼示例
- HTML <input> align屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <object> align Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。