bottom 是CSS定位属性,用于设置元素相对于其包含块(父元素)底部边缘的偏移量。它通常与position: absolute 或 position: fixed 一起使用。

语法如下:
bottom: auto | length | percentage | initial | inherit;

  •  auto: 默认值,元素保持在其正常文档流中的位置。

  •  length: 指定一个固定的长度值,例如像素(px)、厘米(cm)等。

  •  percentage: 相对于包含块的百分比值。

  •  initial: 将属性重置为其默认值。

  •  inherit: 继承父元素的值。


例如:
position: absolute;
bottom: 20px;

这将使元素距离其包含块的底部边缘有20像素的偏移量。你也可以使用百分比值或其他长度单位,具体取决于你的设计需求。


转载请注明出处:http://www.zyzy.cn/article/detail/4151/CSS