gpt4 book ai didi

html - 如何让标题与表单的列正确对齐?

转载 作者:太空宇宙 更新时间:2023-11-04 10:44:57 25 4
gpt4 key购买 nike

这是现在的样子:

http://i.imgur.com/zrc9dfu.png

发生的事情是我创建的表单的列与我的标题不一致。我还希望它在调整浏览器大小时也能自动调整自身大小。任何帮助是极大的赞赏。这是我的代码:

<html>
<body>
<h1 style="font-family:verdana; font-size:160%; text-align:center;"> W1 Resource Management</h1>
<p style="font-family:verdana; font-size:100%;"><i><strong>Make a reservation.</strong></i></p>
<table>
<tr>
<th>UserID</th>
<th>Resource Name</th>
<th>Resource Type</th>
<th>Location</th>
<th>Reservation Time</th>
</tr>
</table>

<form id="testformid" method="post" action="/insert.php">
<input type="text" name="userID">
<input type="text" name="resName">
<input type="text" name="resType">
<input type="text" name="resLoc">
<input type="number" name="resTime">
<input type="submit" value="Reserve" onclick="insertdb(resID,"","",true)" >
</form>
<body>
</html>

我这样写我的样式表:

input[type=text] {
width: 15px;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 1px solid #555;
outline: none;
}

table {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 50%;
}

最佳答案

您的表格和表单是两个独立的容器,因此无需强制对齐它们。考虑将表格放入表单中:

<html>
<body>
<h1 style="font-family:verdana; font-size:160%; text-align:center;"> W1 Resource Management</h1>
<p style="font-family:verdana; font-size:100%;"><i><strong>Make a reservation.</strong></i></p>

<form id="testformid" method="post" action="/insert.php">
<table>
<thead>
<tr>
<th>UserID</th>
<th>Resource Name</th>
<th>Resource Type</th>
<th>Location</th>
<th>Reservation Time</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" name="userID"></td>
<td><input type="text" name="resName"></td>
<td><input type="text" name="resType"></td>
<td><input type="text" name="resLoc"></td>
<td><input type="number" name="resTime"></td>
<td><input type="submit" value="Reserve" onclick="insertdb(resID,"","",true)"> </td>
<tr>
</tbody>
</table>
</form>
<body>
</html>

关于html - 如何让标题与表单的列正确对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35493442/

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