设置三个 <div> 元素的宽度:
div.a {
width: auto;
border: 1px solid black;
}
div.b {
width: 150px;
border: 1px solid black;
}
div.c {
width: 50%;
border: 1px solid black;
}
亲自试一试 »
下面有更多 "亲自试一试" 示例。
这个width
属性设置元素的宽度。
元素的宽度不包括内边距、边框或边距!
表中的数字指定完全支持该属性的第一个浏览器版本。
Property | |||||
---|---|---|---|---|---|
width | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
width: auto|
value|initial|inherit;
Value | Description | Demo |
---|---|---|
auto | Default value. The browser calculates the width | Demo ❯ |
length | Defines the width in px, cm, etc. Read about length units | Demo ❯ |
% | Defines the width in percent of the containing block | Demo ❯ |
initial | Sets this property to its default value. Read about initial | |
inherit | Inherits this property from its parent element. Read about inherit |
将 <input type="text"> 元素的宽度设置为 100px。然而,当它获得焦点时,将其宽度设置为 250px:
input[type=text] {
width: 100px;
}
input[type=text]:focus {
width: 250px;
}
亲自试一试 »
CSS教程:CSS 高度和宽度
CSS教程:CSS 盒子模型
CSS 参考:高度属性
HTML DOM 参考:宽度属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!