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;
}
도와주세요 ..
** 트레이 캐롤 ** 감사합니다! 나는 –