当前位置: 首页 > 网络学院 > 网页制作基础教程 > CSS > CSS width属性
The width property sets the width of an element.
width 属性可设置元素的宽度
Inherited: No
继承性:无
img { width: 100% } |
值 | 描述 |
---|---|
auto | The browser calculates the actual width 让浏览器自动计算实际宽度 |
% | Defines the width in % of the parent element's width 以父级元素的宽度为基准,按百分比来定义宽度 |
length | Defines the width in px, cm, etc. 以px,cm等尺寸单位来定义宽度 |