0
Spliting a row into multiple columns
How do I split a row into 2 column on html using the span attribute
1 Odpowiedź
+ 3
<table border=1>
<tr>
<td>a</td>
<td>b</td>
<td>c</td>
</tr>
<tr>
<td colspan=3>alphabet</td>
</tr>
</table>