Styling (X)HTML table Elements

examples of how to style (X)HTML table elements in response to http://stackoverflow.com/questions/7373177/can-html-table-cells-be-rearranged-with-css

HTML

<div class="box">
    <table class="table03">
        <tbody>
    
            <tr><td class="table03b">B</td><td class="table03c">C</td></tr>
        </tbody>
    </table>
</div>

CSS

table{width:400px}
td,th{text-align:center; outline:1px solid #000}
.box{position:relative; margin-top:30px; width:400px}
.table02{}
.table03 td{position:absolute;}
.table03b{top: 18px; width:100%}
.table03c{top: 0; width:100%}