默認情況下,與文本一致的圖像與底部對齊,並與上一行的底部對齊,從而更改文本間距:垂直居中嵌入圖像,不會扭曲文字間距
我想代替集中在其文本的線(例如,使用vertical-align:middle
)中的圖像,但沒有扭曲間距:
ħ這可以通過符合大多數瀏覽器的方式來完成嗎?
作爲一個小例子,考慮這個標記:
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<title>Example</title>
</head>
<body>
<p>Some text</p>
<p>Some text <img src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/38/Rect_Geometry.png/220px-Rect_Geometry.png" style="vertical-align:middle"> with an image </p>
</body>
</html>
什麼是你的標記是什麼樣子? –
你只是想漂浮它嗎? – shubniggurath
@shubniggurath是的,但浮動只適用於左側和右側,我希望它垂直工作。 –