divs not displaying as a table
- by CoffeeCode
i made a css:
DIV.TableContainer {
display: table;
background-color:Aqua;
}
DIV.TableRow {
display: table-row;
}
DIV.TableCell {
display: table-cell;
}
html page:
<div class="TableContainer">
<div class="TableRow">
<div class="TableCell">
<h4>Left Col</h4>
…