我有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;
}
請幫助..
**崔卡羅爾**感謝!我會嘗試 – 2011-04-26 03:11:49