1

我正在尝试将图像底部对齐到 h1 文本,但我没有达到预期的结果。我尝试添加两个 div 并对齐效果不佳的它们,现在我正在尝试对齐跨度,但我也没有得到想要的结果。

<div id="formheader">
        <div id="formlogo"> <img src="../../Pictures/EditIcon.gif" width="17" height="20" alt="login logo"> </div>
        <div id="formtitle"> <span> <img src="../../Pictures/EditIcon.gif" width="17" height="20" alt="login logo">Editor</span> </div>
      </div>

对齐问题

有关如何将图像与文本对齐的任何提示?我不得不从 h1 更改为 span,因为它不会与 h1 对齐。

4

1 回答 1

1

像这样写:

img{
 vertical-align:bottom;
}
于 2012-05-16T12:10:34.833 回答