我对提交输入类型的定位存在问题。
HTML:
<form action="process.php" method="POST">
<fieldset class="form-search">
<input type="text" class="input-text" name="keyword" value="Enter Keyword / Catalogue Code" id="textBox"/>
<input type="submit" class="submit-search" name="search" alt="search" value="Go" />
</fieldset>
</form>
CSS:
input.submit-search{
width:30px;
height:30px;
position:absolute;
top: 6px;
left:365px;
background-color:#cccccc;
border: 1px solid #333333;
}
我的问题是该按钮在FF中的位置与其他浏览器不同。 在FF中,它正在向右下方过多。
有什么想法吗? 感谢。