📜  CSS-尺寸

📅  最后修改于: 2020-10-26 04:48:57             🧑  作者: Mango


您已经看到了每个框周围的边框,即。元素,可以出现在每个框内的填充以及可以围绕它们的边距。在本教程中,我们将学习如何更改盒子的尺寸。

我们具有以下属性,可让您控制盒子的尺寸。

  • height属性用于设置盒子的高度。

  • width属性用于设置盒子的宽度。

  • line-height属性用于设置文本行的高度。

  • max-height属性用于设置盒子可以达到的最大高度。

  • min-height属性用于设置盒子可以的最小高度。

  • max-width属性用于设置一个盒子可以的最大宽度。

  • min-width属性用于设置盒子可以的最小宽度。

高度和宽度属性

heightwidth属性使您可以设置框的高度和宽度。它们可以采用长度,百分比或关键字auto的值。

这是一个例子-

This paragraph is 400pixels wide and 100 pixels high

它将产生以下结果-

行高属性

line-height属性使您可以增加文本行之间的间距。 line-height属性的值可以是数字,长度或百分比。

这是一个例子-

This paragraph is 400pixels wide and 100 pixels high and here line height is 30pixels. This paragraph is 400 pixels wide and 100 pixels high and here line height is 30pixels.

它将产生以下结果-

最大高度属性

max-height属性允许您指定盒子的最大高度。 max-height属性的值可以是数字,长度或百分比。

–此属性在Netscape 7或IE 6中均不起作用。

这是一个例子-

This paragraph is 400px wide and max height is 10px This paragraph is 400px wide and max height is 10px This paragraph is 400px wide and max height is 10px This paragraph is 400px wide and max height is 10px




logo

它将产生以下结果-

最小高度属性

min-height属性允许您指定盒子的最小高度。 min-height属性的值可以是数字,长度或百分比。

–此属性在Netscape 7或IE 6中均不起作用。

这是一个例子-

This paragraph is 400px wide and min height is 200px This paragraph is 400px wide and min height is 200px This paragraph is 400px wide and min height is 200px This paragraph is 400px wide and min height is 200px

logo

它将产生以下结果-

最大宽度属性

max-width属性允许您指定盒子的最大宽度。 max-width属性的值可以是数字,长度或百分比。

–此属性在Netscape 7或IE 6中均不起作用。

这是一个例子-

This paragraph is 200px high and max width is 100px This paragraph is 200px high and max width is 100px This paragraph is 200px high and max width is 100px This paragraph is 200px high and max width is 100px This paragraph is 200px high and max width is 100px

logo

这将产生以下结果-

最小宽度属性

min-width属性允许您指定盒子的最小宽度。 min-width属性的值可以是数字,长度或百分比。

–此属性在Netscape 7或IE 6中均不起作用。

这是一个例子-

This paragraph is 100px high and min width is 400px This paragraph is 100px high and min width is 400px

logo

它将产生以下结果-