美文网首页
相邻的div层margin 负值被覆盖引起的层级(z-index

相邻的div层margin 负值被覆盖引起的层级(z-index

作者: 泪滴在琴上 | 来源:发表于2021-02-02 18:06 被阅读0次

相邻的div层margin 负值被覆盖引起的层级(z-index)问题:

描述:

需求:A和B层,B层margin-top:-50px;

目的:B层隐藏50px与A层下

<div class="A"></div>

<div class="B"></div>

出现问题:B层覆盖A层上50px,而不是隐藏在A层下;

解决办法:

第一种:.B{
position: relative;//加这条样式
}

第二种:.B{
display: inline-block;//加这条样式
}

相关文章

网友评论

      本文标题:相邻的div层margin 负值被覆盖引起的层级(z-index

      本文链接:https://www.haomeiwen.com/subject/wvsuaktx.html