【发布时间】:2020-09-06 06:25:28
【问题描述】:
表格说明:
- 表格由四列六行组成。
- 表格嵌入表格中
-
表格由两列六行组成
- 第 2 列第 2 行中的文本和文本框跨四行
-
有两个
标签用来分隔文本和文本框<table> <form name="application" method="post" action=""> <tr> <th>Application Form</th> </tr> <tr> <td>First Name<input name="firstname" type="textbox" size="20"</td><br> <td rowspan="4">Countries and places you wish to visit:<br><br> <textarea></textarea></td></td> </tr> <tr> <td>Last Name:<input type="textbox" size="20"></td> </tr> <tr> <td>Phone number:<input type="textbox" size="20"></td> </tr> <tr> <td>Email:<input type="textbox" size="20"></td> </tr> <tr> <th colspan="4"><input type="submit" name="submit" id="submit" value="Submit"> <input type="reset" name="reset" id="reset" value="Reset"></th> </tr> </form>我需要做这张桌子enter image description here
【问题讨论】:
-
嗨,@Marland,欢迎来到 SO。您对上述代码遇到了什么问题?根据代码,您应该将
<form>和</form>移出<table>。而且你还需要添加一个闭包标签</table>。
标签: html html-table