2014-07-23 50 views
0

如何拉伸父div適合兒童div?如何拉伸父div適合兒童div?

我試圖添加元素clear: both;內容後,但它不適合我。

HTML:

<div id="wrapper"> 
    <div class="left-menu"> 
    </div> 
    <div class="right-bar"> 
     <div class="right-content"> 
      <div class="content"> 
       <div class="content-wrapper"> 
        <div class="content-body"> 
         Here is content 
        </div 
       </div> 
      </div> 
     </div> 
    </div> 
</div> 

CSS:

.left-menu { 
    background-color: #0B0C0E; 
    width: 20%; 
    height: 100%; 
    float: left; 
} 
.right-bar { 
    background-color: #F0F0F0; 
    height: 100%; 
    width: 100%; 
} 
.right-content { 
    float: left; 
    width: 80%; 
} 
.right-content > .content { 
    padding: 21px 0 0 42px; 
} 
.right-content > .content > .content-wrapper { 
    width: 98%; 
    height: 70%; 
} 
.right-content > .content .content-body { 
    background-color: #FAFAFA; 
    padding: 20px; 
    font-size: 24px; 
    border: 1px solid #D0D0D0; 
} 

沙盒測試:http://roonce.com/en/room/SwZuEJYB

在此先感謝。

+0

請在文章中包含您的HTML;我們無法幫助您,而有30人同時對您的沙盒內容進行更改。 – TylerH

+0

@TylerH,沒問題。附加到帖子。 – qwerty

回答