画像とテキストの縦方向の配置について質問があります
みたいな人がいます
<div id='div1'>
<div id='div2'>
text here, more and more and more and more texts…….
<img src='test.png' class='img'/>
</div>
</div>
#div2{
border-color: black;
border-style: solid;
border-width: 0 1px 1px 1px;
padding: 10px;
font-size: .8em;
}
#div1{
width: 250px;
}
.img{
float:right;
vertical-align:middle;
}
私は私の結果が欲しい
text here, more and more and more
and more and more and more and more img here
texts
誰でもそれについて私を助けることができますか? どうもありがとう!
テキストの行数に関係なく、画像は垂直方向の中央になります。