<div class="container">
<table>
<caption><small>Table width is set to 814px. Column widths are <strong>not</strong> specified.</small></caption>
<tr>
<td>Content of the first cell in the first column</td>
<td>content of second cell</td>
</tr>
<tr>
<td>content of third cell</td>
<td>content four</td>
</tr>
</table>
</div>
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,900);
body {
background-color: #f5f5f5;
color: #555;
font-size: 1.1em;
font-family: 'Lato', sans-serif;
}
.container {
margin: 40px auto;
width: 800px;
}
table,
td,
th {
padding: 1em;
border: 1px solid #ddd;
text-align: left;
}
table {
table-layout: fixed;
width: 814px;
background-color: white;
}
caption {
caption-side: bottom;
font-style: italic;
}