I created a field using rectangles as divs. However, when I add content to the rectangle divs, the formatting gets messed up. Can anyone help me fix this issue? Here's the link
<div class='line' id='line1'>
<div class='cell top_cell left_cell' id='l1c1'><font size="6">•</font></div>
<div class='cell top_cell' id='l1c2'></div>
<div class='cell top_cell' id='l1c3'></div>
<div class='cell top_cell' id='l1c4'></div>
<div class='cell top_cell right_cell' id='l1c5'></div>
</div>
CSS
.cell {
background:#F593D1;
width:50px;
height:50px;
border-radius:6px;
border: 1px solid;
-webkit-border-radius:6px;
-moz-border-radius:5px;
-khtml-border-radius:10px;
display:inline-block;
opacity: 0.7;
}