CSS 垂直排列重叠:为何文字和 div 会覆盖?

css 垂直排列重叠:为何文字和 div 会覆盖?

css实现垂直排列重叠的原因

页面中出现了文字和div覆盖区域重叠的情况。这样的排版是如何实现的呢?

问题中提供的代码使用了三横排的布局,如下所示:

<p>https://www.stgeorges.edu.ar/quilmes/history</p><p><span>立即学习</span>“<a href="https://pan.quark.cn/s/cb6835dc7db1" style="text-decoration: underline !important; color: blue; font-weight: bolder;" rel="nofollow" target="_blank">前端免费学习笔记(深入)</a>”;</p>
<p></p>
<p>这种排版是怎么实现的?</p>
<p>如下三张图, 为什么文字和div覆盖区域会重叠?</p>

重叠的原因在于.content-container这个类。它添加了margin-top:-40px的样式,导致这个盒子向上移动,遮住了文字。

css代码如下:

.content-container {
  margin-top: -40px;
}

要解决这个问题,可以将margin-top属性设为0。

.content-container {
  margin-top: 0;
}

以上就是CSS 垂直排列重叠:为何文字和 div 会覆盖?的详细内容,更多请关注其它相关文章!