Style bottom 属性
定义和用法
bottom 属性设置或返回定位元素的底部位置。
该属性规定了元素的底部位置,包括:内边距、滚动条、边框和外边距。
提示: 一个定位元素是元素的 position 属性被设置为:relative(相对)、absolute(绝对)或 fixed(固定)。
提示: 要设置或返回定位元素的顶部位置,请使用 top 属性。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
bottom | Yes | Yes | Yes | Yes | Yes |
语法
返回 bottom 属性:
object.style.bottom
设置 bottom 属性:
object.style.bottom = "auto|length|%|initial|inherit"
属性值
值 | 描述 |
---|---|
auto | 默认。通过浏览器计算底部的位置。 |
length | 使用 px、cm 等单位设置元素的底边到最近一个具有定位设置父元素的底部边缘的位置。可使用负值。 |
% | 设置元素的底边到最近一个具有定位设置父元素的底部边缘的百分比位置。 |
initial | 设置该属性为它的默认值。请参阅 initial |
inherit | 从父元素继承该属性。请参阅 inherit |
技术细节
默认值: | auto |
---|---|
返回值: | 一个字符串,表示定位元素的底部位置 |
CSS 版本 | CSS2 |
更多实例
相关页面
CSS 教程: CSS Positioning
CSS 参考手册: bottom 属性
❮ Style 对象