我对设计一无所知,我试图让一个简单的HTML表单看起来像这样:
基本上,它是带有三个输入字段和一个提交按钮的表单。
关于输入字段,两个位于顶部,一个位于之下。我希望它们完全中心对齐,第二个要拉伸到与上面相同的宽度。
关于提交按钮,我希望它与输入字段在水平和垂直方向上完全居中对齐,但在它们的右边。
我并不担心它不是完全跨浏览器。
感谢任何指针!
编辑:我更喜欢使用CSS而不是基于表格。 (我听说基于表格的只是简单的邪恶。)
答案 0 :(得分:6)
用纯CSS做这样的事情怎么样?顺便说一下......你知道输入字段和搜索按钮的具体尺寸吗?如果我知道一些尺寸,我可能会做一点清洁工。无论如何,看看演示......
<div id="wrap">
<div id="fields">
<input type="text" id="left" />
<input type="text" id="right" />
<div class="clear"></div>
<input type="text" id="bottom" />
</div>
<input type="button" value="Search" id="search-button" />
</div>
#wrap {
min-width: 375px;
position: relative;
}
#fields {
float: left;
position: relative;
}
#left {
height: 15px;
width: 150px;
float: left;
position: relative;
}
#right {
height: 15px;
width: 150px;
margin-left: 5px;
float: left;
position: relative;
}
#bottom {
height: 15px;
width:309px;
margin-top: 5px;
position: relative;
}
#search-button {
position: relative;
left: 15px;
top: 12px;
}
.clear {
clear: both;
}
我希望这会有所帮助。
答案 1 :(得分:3)
您可以使用表格。 :)这是代码ALL准备好了ya:
<table>
<tbody>
<tr>
<td><input type="text" /></td>
<td><input type="text" /></td>
<td rowspan="2" style="vertical-align:middle;"><input type="submit" /></td>
</tr>
<tr>
<td colspan="2"><input style="width:100%" type="text" /></td>
</tr>
</tbody>
</table>