130 HTML input align 属性 129 HTML input accept 属性 131 HTML input alt 属性 HTML <input> align 属性 实例 带有图像提交按钮的 HTML 表单,提交按钮对齐到右边: <form action="demo_form.html"> First name: <input type="text" name="fname"><br> <input type="image" src="submit.gif" alt="Submit" align="right" width="48" height="48"> </form> 试一试 浏览器支持 注意: 只有 align 属性的 "left" 和 "right" 值能在所有主流浏览器中正常工作。 定义和用法 HTML5 不支持 <input> align 属性。请使用 CSS 代替。 在 HTML 4.01 中,<input> 的 align 属性 已废弃。 align 属性只能与 <input type="image"> 配合使用,它规定图像输入相对于周围其他元素的对齐方式。 语法 <input align="left|right|middle|top|bottom"> 提示: 如需规定多个值,请使用逗号分隔(比如 <input accept="audio/*,video/*,image/*" />)。 属性值 值 描述 left 左对齐图像(默认)。 right 右对齐对象。 top 上对齐图像。 middle 居中对齐图像。 bottom 下对齐图像。 129 HTML input accept 属性 131 HTML input alt 属性