2011-04-26 90 views
1

我有div大小和浮動問題。當我有小文本是OK:
SEE IMAGE
但看時,我有很大的文本會發生什麼
SEE IMAGEDIV浮動和上漿問題

HTML:

<div class="news"> 
    <div class="img"> 
     <img src="url"> 
    </div> 
    <div class="wrap"> 
     <div class="title">TITLE</div> 
     <div class="text">TEXT</div> 
    </div> 
</div> 

CSS:

.news{ 
    float:left; 
    padding:5px 5px 2px 5px; 
    margin-bottom:10px; 
} 
.news > .img{ 
    float:left; 
    width:75px; 
    margin-right:5px; 
} 
.news > .img > img{ 
    height:75px; 
    width:75px; 
} 
.news > .wrap{ 
    float:left; 
} 
.news > .wrap > .title{ 
    font-size:14px; 
} 
.news > .wrap > .text{ 
    text-align:justify; 
} 

請幫助..

回答

0

你必須設置寬度您.wrap容器。

+0

。包裹必須在diwth – 2011-04-26 03:12:52

0

嘗試:

.news { 
    float:left; 
    padding:5px 5px 2px 5px; 
    margin-bottom:10px 
} 
.news .img { 
    float:left; 
    width:75px; 
    margin-right:5px; 
} 
.news .wrap .title { font-size:14px; } 
.news .wrap .text { text-align:justify; } 
0

給正確的寬度包裹格

提供100%的寬度上新聞DIV