前端之家收集整理的这篇文章主要介绍了
css – 设置绝对位置和边距,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想设定一个元素的绝对位置,并有一个边际底线,但似乎边际底线没有影响。
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将只对绝对定位的元素执行任何操作。
原文链接:https://www.f2er.com/css/218571.html