使用HTML中的图像将文本对齐到行的底部

时间:2013-10-01 14:57:47

标签: html css css-position

嗨,我有像这样的内嵌图像的HTML

<p style="">
    <img src="df9b4006-930e-45d7-8123-bec019a37800.png" height="178" width="112">text
</p>

但是文字是垂直居中的,我怎样才能将它放在同一行的图像的底部基线上?

enter image description here

2 个答案:

答案 0 :(得分:7)

p img {vertical-align: baseline;}

以下是有关vertical-align:https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align

的信息

答案 1 :(得分:3)

我会使用vertical-aligntext-bottom作为您的示例:

p img {
   vertical-align: text-bottom;
}

http://jsfiddle.net/crazytonyi/pSKYm/2/