Skip to content

Instantly share code, notes, and snippets.

@tmhedberg
Created November 11, 2010 18:35
Show Gist options
  • Save tmhedberg/672951 to your computer and use it in GitHub Desktop.
Save tmhedberg/672951 to your computer and use it in GitHub Desktop.
#my_table td {
font-weight: bold;
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="table.css">
</head>
<body>
<table id="my_table">
<tbody>
<tr><td>Row 1, Cell 1</td><td>Row 1, Cell 2</td><td>Row 1, Cell 3</td></tr>
<tr><td>Row 2, Cell 1</td><td>Row 2, Cell 2</td><td>Row 2, Cell 3</td></tr>
<tr><td>Row 3, Cell 1</td><td>Row 3, Cell 2</td><td>Row 3, Cell 3</td></tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment