Table Example

HTML

<h4>[ 1 ]</h4>
<table>
    <tr>
        <td>50%</td>
    </tr>
    <tr>
        <td>50%</td>
    </tr>
</table>
<h4>[ 2 ]</h4>
<table>
    <tr>
        <td>100% - 50px</td>
    </tr>
    <tr height="50">
        <td>50px</td>
    </tr>
</table>

CSS

/* Mohammad Reza Mahmoudi (rezamahmoudi.ir) */
*{margin:0;padding:0;border:0;}
body{font-family:arial;color:#333;}
table{height:200px;width:100%;margin-bottom:40px;text-align:center;}
table:last-child{margin:0;}
tr{background:#009ddc;}
tr:nth-child(even){background:#00f0ad;}
h4{text-align:center;margin:10px 0;}