最新的Web开发教程
 

HTML width属性


定义和用法

width属性用于指定元素的宽度,以像素为单位。

注意:对于输入元素的width属性只使用<input type="image">


适用于

width属性可以在下列元素一起使用:

分子 属性
<canvas> width
<embed> width
<iframe> width
<img> width
<input> width
<object> width
<video> width

例子

Canvas

一个<canvas> ,其高度为200个像素宽度的元素:

<canvas id="myCanvas" width="200" height="200" style="border:1px solid">
试一试»

Embed

一个Flash动画,其高度为200个像素宽度:

<embed src="helloworld.swf" width="200" height="200">
试一试»

Iframe示例

一个<iframe>用指定的高度和200像素宽:

<iframe src="/default.html" width="200" height="200"></iframe>
试一试»

Img示例

具有的高度和42个像素的宽度的图像:

<img src="smiley.gif" alt="Smiley face" height="42" width="42">
试一试»

Input示例

定义图片作为提交按钮,用高度和宽度属性:

<form action="demo_form.asp">
  First name: <input type="text" name="fname"><br>
  Last name: <input type="text" name="lname"><br>
  <input type="image" src="img_submit.gif" alt="Submit" width="48" height="48">
</form>
试一试»

Object实例

Flash动画具有400像素的高度和宽度::

<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">
  Your browser does not support the video tag.
</video>
试一试»

浏览器支持

width属性为每个元素以下浏览器支持:

元件
canvas 4 9 2.0 3.1 9
embed
iframe
img
input 1.0 16.0 1.0
object
width