css – 设置绝对位置和边距

前端之家收集整理的这篇文章主要介绍了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

猜你在找的CSS相关文章