我对图像和文本的垂直对齐有疑问
我有一个喜欢的人
<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
任何人都可以帮助我吗?非常感谢!
无论我有多少行文字,图像都会在垂直中间。