
Hi there, I am trying to use <div> instead of <td>. As part of this exercise, I want to divide a row <div> into two cells. I have written the following html and CSS code. <div class="row"> <div class="cell">Box 1</div> <div class="cell">Box 2</div> </div> .sheet-row:after { content: ""; display: table; clear: both; } .sheet-cell { float: left; width: 50%; font-size: 20px; border: 1px #BDBDBD solid; } When I run this code, I end up with Box 1 over Box 2 instead of next to each other. What am I doing wrong ?