当前位置:Gxlcms > html代码 > css中如何设置div相对位置后,又不占位置的?_html/css_WEB-ITnose

css中如何设置div相对位置后,又不占位置的?_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:653人阅读

比如
#box_relative {
position: relative;
left: 30px;
top: 20px;
}

它所占的空间仍保留, 怎么让它不占位置,又可以实现相对位置的。

我想实现的事某个div 相对某个元素的位置,但是又不占位置。

谢谢先!


回复讨论(解决方案)

position:absolute(子级)和 position: relative(父级)配合使用
就是所谓的相对定位

你是考虑到层次的问题么?



#box_relative{
position: absolute;
left: 30px;
top: 20px;
}

你可以将它邻近的盒子设置成relative相对定位,不脱标准。然后在里面加上这个盒子

#box_relative {
position: absolute;
left: 30px;
top: 20px;
}

人气教程排行