width 属性设置或返回元素的宽度。
width 属性仅对块级元素或具有绝对或固定位置的元素有效。溢出的内容可以通过overflow属性来操作。
提示:使用高度属性来设置或返回元素的高度。
Property | |||||
---|---|---|---|---|---|
width | Yes | Yes | Yes | Yes | Yes |
返回宽度属性:
object.style.width
设置宽度属性:
object.style.width = "auto|
length|%|initial|inherit"
Value | Description |
---|---|
auto | The browser sets the width. This is default |
length | Defines the width in length units |
% | Defines the width in % of the parent element |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
默认值: | 汽车 |
---|---|
返回值: | 一个字符串,表示元素的宽度 |
CSS版本 | CSS1 |
更改 <img> 元素的高度和宽度:
document.getElementById("myImg").style.height = "300px";
document.getElementById("myImg").style.width = "300px";
亲自试一试 »
CSS教程:CSS尺寸
CSS教程:CSS 盒子模型
CSS 参考:宽度属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!