1)
<div class="testimonials">
<div class="content">
<p>Content ONE</p>
<p>Content TWO</p>
<p>Content THREE</p>
</div>
</div>
<div class="other-content">
<p>Content Here</p>
</div>
2)在上面的代码中,我已将position:absolute
提供给<p></p>
代码,因此other-content
类内容未显示在content
类下。
3)我需要在other-content
课程下方显示other-content
个内容。
4)请不要使用身高,解决问题。
5)请检查以下链接。
6)这是fiddle。
提前致谢。
答案 0 :(得分:0)
从.content p
试试这个..
.content p{
width: 50%;
background-color: #eee;
float: left;
padding: 15px;
}
答案 1 :(得分:0)
将两个div(推荐和其他内容)包装在一个额外的包装器div中,然后在该包装器上设置position:absolute
。
.wpr {
position: absolute;
}
&#13;
<div class="wpr">
<div class="testimonials">
<div class="content">
<p>Content ONE</p>
<p>Content TWO</p>
<p>Content THREE</p>
</div>
</div>
<div class="other-content">
<p>Other Content Here</p>
</div>
</div>
&#13;