如何用 HTML 制作这个 table
How to make this table just with HTML
我想用 HTML 制作这个 table。
请帮助我。
This Table
您可以使用 colspan="2"
:
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
<body>
<table>
<tr>
<th><img src="https://i.imgur.com/ldDV6v9.jpg" width="50px" /></th>
<th>Item 2</th>
</tr>
<tr>
<td colspan="2">Third Item</td>
</tr>
<tr>
<td colspan="2"><a href="http://example.com">Forth Item</a></td>
</tr>
</table>
</body>
我想用 HTML 制作这个 table。 请帮助我。
This Table
您可以使用 colspan="2"
:
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
<body>
<table>
<tr>
<th><img src="https://i.imgur.com/ldDV6v9.jpg" width="50px" /></th>
<th>Item 2</th>
</tr>
<tr>
<td colspan="2">Third Item</td>
</tr>
<tr>
<td colspan="2"><a href="http://example.com">Forth Item</a></td>
</tr>
</table>
</body>