

body {
    background-color: lightblue;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.divTable {
    display: table;
    width: 100%;
    background-color: #eee;
    border: 1px solid #666666;
    border-spacing: 5px; /*cellspacing:poor IE support for  this*/
    /* border-collapse:separate;*/
}

.divRow {
    display: table-row;
    width: 100%;
}

#row-2 {
    background-color: red;
   /* width: 100%;*/
}
.divCell {
    float: left; /*fix for  buggy browsers*/
    display: table-column;
    width: 33%;
    /*background-color: #ccc;*/
}


