0

我的问题与图像的位置有关,它位于输入框位置的正上方。我希望它与输入框在同一行

<div style="display: table; margin: 0 auto; margin-top: 10px">
    <input id="searchip" type="text" maxlength="30" autofocus="" size="50" name="textnew" style="height: 20px">
    <img src="images/savedomain.png">
</div>
4

1 回答 1

1

你需要的是

img {
    vertical-align: top;
}

演示

于 2013-07-24T11:14:38.750 回答