我有 div 大小和浮动问题。当我有小文本时没关系:
查看图像
但看看当我有大文本时会发生什么
查看图像
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;
}
请帮忙..