center table

by aaronk85

HTML

<table>
<tbody>
<tr>
<td class="label"><label for="l_name">Name</label>:</td>
<td class="value"><input type="text" name="l_name" value="" id="l_name"></td>
</tr>
</tbody>
</table>

CSS

table {
    background: none repeat scroll 0 0 #FFFFFF;
    text-align: center;
    width: 100%;
}

tbody {
    background: none repeat scroll 0 0 red;
    display: inline-block;
    width: 360px;
}