📜  CSS width属性

📅  最后修改于: 2020-11-06 01:00:39             🧑  作者: Mango

CSS width

CSS width属性用于设置元素内容区域的宽度。

它不包括填充边框或边距。它设置元素的边框,边框和边距内部区域的宽度。

CSS宽度值

Value Description
auto It is a default value. it is used to calculate the width.
length It is used to define the width in px, cm etc.
% It defines the width of the containing block in %.
initial It is used to set the property to its default value.
inherit It is used to inherit the property from its parent element.

CSS宽度示例:像素宽度








The height and width of this paragraph is 150px.

This is a paragraph.

输出:


本段的高度和宽度为150像素。

这是一个段落。

CSS宽度示例:宽度(%)

宽度百分比是包含块的度量单位。这非常适合图像。









输出:




注意:您也可以使用“最小宽度”和“最大宽度”属性来控制图像的大小。