What is Table Sizes in HTML 5
HTML table sizes is used for arrange row, column of width and height.
Example
<!Doctype Html>
<html>
<head>
<title>Table Sizes</title>
</head>
<body>
<table width="300" height="400" border="1">
<tr>
<td width="100">1</td>
<td width="200">A</td>
</tr>
<tr>
<td width="100">2</td>
<td width="200">B</td>
</tr>
<tr>
<td width="100">3</td>
<td width="200">C</td>
</tr>
<tr>
<td width="100">4</td>
<td width="200">D</td>
</tr>
</table>
</body>
</html>
Output
Post Your Comment