如何我可以對齊圖片和文字水平沒有像下移動的其他文字垂直對齊圖片和文字
我喜歡做這個(樣品XXXXX是一個大的圖像)
XXXXXXXX This is a big image.
XXXXXXXX all text should not goes
XXXXXXXX down the image
XXXXXXXX
但問題是我的文字下降了圖像
XXXXXXXX This is a big image.
XXXXXXXX
XXXXXXXX
XXXXXXXX
all text should not goes down the image
請幫助我。
這裏是我的代碼
<div id = 'wrap'>
<div class='image'>
<img src="/test/1.jpg" />
This is a big image all text should not goes down the image
</div>
<div class='image'>
<img src="/test/2.jpg" />
This is a big image all text should not goes down the image
</div>
</div>
CSS,我用...
#wrap {
overflow: auto;
height: 300px;
}
.image{
border-top-style:outset;
}
#wrap > div > img {
width : 80px;
height : 70px;
margin-left:5px;
margin-top:5px;
margin-bottom:5px;
padding-bottom: 4px;
float:left;
clear:left;
}
無論寫一個兩列layour(圖片|文本),或者只是漂浮在圖像向左帶線的CSS:'浮動:左;'。這允許文本在足夠長的時間內使用圖像下的空間。 – amon 2013-02-08 11:21:04