HTML width 属性
定义和用法
The width
属性以像素为单位指定元素的宽度。
注意:对于输入元素,width
属性仅与 <input type="image">
一起使用。
应用于
The width
属性可用于以下元素
元素 | 属性 |
---|---|
<canvas> | width |
<embed> | width |
<iframe> | width |
<img> | width |
<input> | width |
<object> | width |
<video> | width |
例子
Canvas 示例
一个高度和宽度为 200 像素的 <canvas> 元素
<canvas id="myCanvas" width="200" height="200" style="border:1px solid">
自己试试 »
Iframe 示例
一个指定高度和宽度为 200 像素的 <iframe>
<iframe src="/default.asp" width="200" height="200"></iframe>
自己试试 »
输入示例
定义一个图像作为提交按钮,并具有高度和宽度属性
<form action="/action_page.php">
姓名:<input type="text" name="fname"><br>
姓氏:<input type="text" name="lname"><br>
<input type="image" src="img_submit.gif" alt="提交" width="48" height="48">
</form>
自己试试 »
Object 示例
一个高度和宽度为 400 像素的 flash 动画:
<object data="helloworld.swf" width="400" height="400"></object>
自己试试 »
Video 示例
一个指定宽度和高度的视频播放器
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
您的浏览器不支持 video 标签。
</video>
自己试试 »
浏览器支持
The width
属性对每个元素都有以下浏览器支持
元素 | |||||
---|---|---|---|---|---|
canvas | 4.0 | 9.0 | 2.0 | 3.1 | 9.0 |
embed | 是 | 是 | 是 | 是 | 是 |
iframe | 是 | 是 | 是 | 是 | 是 |
img | 是 | 是 | 是 | 是 | 是 |
input | 1.0 | 是 | 16.0 | 是 | 1.0 |
object | 是 | 是 | 是 | 是 | 是 |
width | 是 | 是 | 是 | 是 | 是 |