我正在考虑创建具有 4 列的表单,例如
Name Phone City Remarks
<html>
<body>
<form id="myform" action="/" method="post" enctype="application/x-www-form-urlencoded">
<input type="text" name="Name" id="mytext" />
<input type="text" name="Phone number" id="mytext" />
<input type="text" name="City" id="mytext" />
<input type="text" name="remarks" id="mytext" />
<input type="submit" id="mysubmit" />
</form>
</body>
</html>
在我的代码中,他们看起来已经分开了。我想要表格/网格,你能告诉我怎么做吗