bottom: auto | <length> | <percentage>
默认值:auto
适用于:定位元素。即定义了position为非static
的元素
继承性:无
动画性:当值为<length> | <percentage>时
计算值:当position为static
时,计算值是auto
。
为relative
时,如果top
和bottom
都是auto
,则它们的计算值是0
;如果top
和bottom
其中一个为auto
,则auto
相当于另一个的负值,即top = -bottom;如果top
和bottom
的值都不为auto
,则忽略bottom
。
否则在其它情况下,当指定值为<length>时,计算值为指定值,当指定值为<percentage>时,计算值为计算后的绝对值。除去这些情况,都为auto
媒 体:视觉
padding
边界开始计算偏移值Values | IE | Firefox | Chrome | Safari | Opera | iOS Safari | Android Browser | Android Chrome |
---|---|---|---|---|---|---|---|---|
Basic Support | 8.0+ | 40.0+ | 40.0+ | 8.0+ | 40.0+ | 8.0+ | 4.4+ | 28.0+ |
top
和bottom
都定义了非auto
的值,那么 bottom 的计算值将会被设置为 -top (无论是否显式的定义了 height 或 max-height),它的指定值将被忽略,说白了,你将无法在不指定某个元素高度的情况,通过给元素指定top
和bottom
的方式来进行高度拉伸;