enter image description here I need to make table like this but I don't know how to. i tried different ways hut I don't know how to adjust table spacing in html. (without css attributes)
Asked
Active
Viewed 40 times
2 Answers
0
If I understood you clearly, You can just use colspan and rowspan, See this snippet below
<table border="black">
<tr>
<td colspan="3">Title</td>
</tr>
<tr>
<td rowspan="3">
<img src="https://via.placeholder.com/150x150" alt="">
</td>
<td>
Label 1
</td>
<td>
Description
</td>
</tr>
<tr>
<td>
Label 1
</td>
<td>
Description
</td>
</tr>
<tr>
<td>
Label 1
</td>
<td>
Description
</td>
</tr>
</table>

Abdelrhman Said
- 76
- 5
0
<table border="1" cellspacing="10">
<tr>
<td colspan="3">Title</td>
</tr>
<tr>
<td rowspan="3">
<img src="https://via.placeholder.com/150x150" alt="">
</td>
<td>
Label 1
</td>
<td>
Description
</td>
</tr>
<tr>
<td>
Label 1
</td>
<td>
Description
</td>
</tr>
<tr>
<td>
Label 1
</td>
<td>
Description
</td>
</tr>
</table>

Kavidu Bimsara
- 1
- 1
- 3