调整div标签内的内嵌图像的位置

时间:2013-07-24 11:08:48

标签: css html layout

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

<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>

1 个答案:

答案 0 :(得分:1)

您需要的是

img {
    vertical-align: top;
}

Demo