0
我需要的是將文本推到div的確切頂部,以便它匹配圖像頂部對齊。
我希望圖像和文本在一行中完全對齊,現在您可以看到文本頂部的小空間不與頂部完美對齊。
HTML
<div class="wrap">
<div class="image"><img src="" /></div>
<div class="content">Lorem ipsum</div>
</div>
CSS
.wrap{background:grey}
.image{display:table-cell; vertical-align:top}
.content{display:table-cell; vertical-align:top; font-size:24px}
父母的身高是否已知?文字會分成兩行嗎? – thordarson
@thordarson是的。這就是爲什麼行高不是一個好主意 – Sowmya
爲什麼行高不是個好主意? **編輯:**對不起,我誤解了你的問題。 – thordarson