What is Table Styling in HTML 5
Styling an HTML table is used CSS to make your tables look better.
Example
<!Doctype Html>
<html>
<head>
<title>HTML table Styling</title>
<style>
table {
background-color: #fe610c;
}
</style>
</head>
<body>
<table width="200" height="200" border="1">
<tr>
<td>A</th>
<td>B</th>
</tr>
<tr>
<td>C</td>
<td>D</td>
</tr>
</table>
</body>
</html>
Output
Post Your Comment