CSS Div内联块内容叠加

时间:2014-07-13 18:17:40

标签: php html css wordpress

请帮我修复css div内容叠加问题 在http://tinyurl.com/n2stvj6 相关博客文章Div。重叠post_content Div。

我需要在上面的网址中使用相同的布局而不会重叠内容。

<div class="post_content">

      <div class="related-blog-posts">
      related content
     </div>

   <p> content goes here </p>

</div>

Css:
.post_content {
    position:relative;
}
.related-category-posts {
    position: absolute;
    top: 100px;
    right: 0;
    /* display: inline-block; */
    /* overflow: hidden; */
    background: #ccc;
    padding: 10px;
    width:230px;
}

1 个答案:

答案 0 :(得分:1)

你可以使用花车:

.post_content {
    overflow:hidden
}
.related-category-posts {
    float:right;
    background: #ccc;
    padding: 10px;
    width:230px;
}