我想将一个元素设置为position,absolute并设置一个margin-bottom,但似乎margin-bottom没有效果。
position
absolute
margin-bottom
HTML:
<div id='container'></div>
CSS:
#container { border: 1px solid red; position: absolute; top: 0px; right: 0px; width: 300px; margin-bottom: 50px; // this line isn't working }
margin-bottom当您的元素位于其顶部时,您会期望做什么?
margin-bottom``absolute如果元素没有top属性,则只会对放置位置的元素执行任何操作。
margin-bottom``absolute
top