比如<td rowspan="2">microsoft</td>,rowspan是向下合并一个,加上自身就是两个
比如<td colspan="2">stephen elop</td>,colspan是向右合并
希望可以帮到你
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<body>标签中,输入html代码:
<table border="1">
<tr><td>1</td><td>2</td><td>3</td></tr>
<tr><td colspan="3">456</td></tr>
</table>
3、浏览器运行index.html页面,此时表格第2行的3个td合并在了一起。