如何将按钮连接到输入

时间:2015-09-06 01:03:57

标签: html button input alignment

如何让按钮连接到输入,有一个尴尬的差距,我不知道如何解决。

here is the input and button

  #ask {

        padding: 10px  10px 10px 6px;
        font-size:45px;
        background-color:#FAFAFA;
        min-width: 400px;
        padding: 0 auto;
        border-radius: 5px;

  }

#button {
      text-align:center;

      }

 </style>


   <input id="ask" type="text" placeholder = "Ex: how tall is the gateway arch" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Ex: how tall is the gateway arch'"/>
   <input type="image" src="qmb.png" name="saveForm" class="btTxt submit" id="button" height="50.5px" padding = "0px"/>

2 个答案:

答案 0 :(得分:1)

使用CSS float:left来获取输入&amp;图像并排。

input, img {
    float:left;
}

请检查这个小提琴:http://jsfiddle.net/hnj604pr/

答案 1 :(得分:0)

将输入标签包装在这样的div中:

<div>
    <input....>
    <input....>
</div>

这样浏览器会为您调整它们。

您也可以考虑更改第二个输入标记以使用按钮或提交标记。