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

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

WBOY
WBOYOriginal
2016-06-24 12:03:464496Durchsuche

比如
#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;
}

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn