最新的Web開發教程
 

HTML <input> align Attribute

<HTML <input>標籤

一個HTML形式的圖像作為一個提交按鈕。 提交按鈕被排列to the right

<form action="demo_form.asp">
  First name: <input type="text" name="fname"><br>
  <input type="image" src="submit.gif" alt="Submit" align="right" width="48" height="48">
</form>
試一試»

定義和用法

align屬性只能與使用<input type="image">它指定根據周圍的元素圖像輸入的對齊。


瀏覽器支持

屬性
align

注意:只有在"left""right"的值align屬性在所有主要瀏覽器正常工作。


兼容性說明

align屬性<input>不支持HTML5。 使用CSS來代替。

CSS語法: <input type="image" style="float:right">

CSS實例:調整輸入圖像

在我們的CSS教程中,你可以找到有關的更多詳細信息float性能


句法

<input align="left|right|middle|top|bottom">

屬性值

描述
left 左對齊圖像(這是默認)
right 右對齊圖像
top 頂對齊圖像
middle 中間對齊圖像
bottom 底部對齊圖像

<HTML <input>標籤