Skip to content

Instantly share code, notes, and snippets.

@pellegrino
Created April 13, 2011 15:00
Show Gist options
  • Save pellegrino/917684 to your computer and use it in GitHub Desktop.
Save pellegrino/917684 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Exemplo tabela</title>
<style>
#container {
margin: 0 auto;
width: 800px;
background-color: #e1e1e1;
}
#container table {
background-color: #c1c1c1;
}
</style>
</head>
<body>
<div id="container">
<h1> Container </h1>
<table>
<tr>
<td>TABELA</td>
</tr>
</table>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment