Styled Table

Example styling a table using CSS.

Preview

Code

<style>
table {border-collapse:collapse;}
td, th {border:1px solid #ccc;padding:8px;}
</style>

<table>
<tr>
<th>Name</th>
<th>Country</th>
</tr>
<tr>
<td>Emma</td>
<td>UK</td>
</tr>
</table>

More HTML Tables Examples (11)