HTML (30)
TD (Table data ) Attribute
Align attribute
This align the data of the table
Example ↓↓↓↓↓↓↓
<html>
<head>
<title>My Page</title>
</head>
<body>
<table border="10" height="90" width="70">
<tr>
<td>sam ple</td>
<td align="right">sam ple</td>
<td align="left">sam ple</td>
<td align="center">sam ple</td>
</tr>
</table>
</body>
</html>
0 Comments