gpt4 book ai didi

css - 使用 CSS 对齐表单域

转载 作者:太空宇宙 更新时间:2023-11-03 23:20:50 26 4
gpt4 key购买 nike

我在 Dupal 7 中有一个高级搜索表单(单击“高级搜索”)- http://www.ibuild.ph/mtf-rdp-minimal/search/node和联系表格 - http://www.ibuild.ph/mtf-rdp-minimal/contact .搜索字段是内联的,而联系字段位于标签下方。

有没有办法用文本标签内联定位字段并使字段彼此垂直对齐,而无需将文本标签和表单字段分开在两个 div 中?

最佳答案

使用表格

您可以通过更改 width: 100px;

来更改标签的宽度

<table style="width: 100%;">
<colgroup>
<col style="width: 100px;">
<col>
<colgroup>
<tr>
<td>Name</td>
<td><input type="text" /></td>
</tr>

<tr>
<td>Address</td>
<td><input type="text" /></td>
</tr>

</table>

使用最小宽度:

<div>
<label style="display: inline-block; min-width: 100px;">Name: </label><input type="text" />
</div>

<div>
<label style="display: inline-block; min-width: 100px;">Address: </label><input type="text" />
</div>

关于css - 使用 CSS 对齐表单域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28790219/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com