打印

请教,同一个form中的2个input的排列

如果同一个form中有2个input 在一行排列,一个是文本框,一个是按钮时,Firefox是居中对齐,IE是下端对齐
<input type="text"><input type="submit">
如何让IE也是居中对齐呢?

谢谢。
every help will be appreciated
在IE下把按钮相对定位

我是这么解决的不知道有没有更好的方法

这是我自己想的
好像再设置高度就可以了。
<style type="text/css">
<!--
       input {
       height:28px;
       float:left;
}
-->
</style>

TOP