我使用的位置:绝对;在div上.
我的代码是:
.ab { background: none repeat scroll 0 0 #FF0000; bottom: 0; height: 100px; left: 0; position: absolute; top: 0; width: 100px; }
解决方法
来自Mozilla:
https://developer.mozilla.org/en-US/docs/Web/CSS/top
When both
top
andbottom
are specified,as long asheight
is unspecified,auto
,or100%
,bothtop
andbottom
distances will be respected. Otherwise,ifheight
is constrained in any way,thetop
property takes precedence and thebottom
property is ignored.
在您的示例中,您已经声明了设置高度以及顶部和底部位置,因此顶部位置优先,底部被忽略(无论您在顶部和底部列出的顺序如何).