Skip to content Skip to sidebar Skip to footer

Div Table (4x4)

I am looking for a div table, with 4 columns and 4 rows. I would like the width to be 100%, I would like to insert images and text into each div. Can anyone help?

Solution 1:

If you need to show tabular data, just use a table. If you want it to be responsive you might use this as a layout: example

.row{
    clear: both;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.cell{
    float: left;
    min-height: 100px;
    width: 24%;
    border: 1px solid black;
    text-align: center;
    min-width: 100px;
}

Note: I set the minimum width of a cell to 100px so it won't be too small - that's the advantage of using divs instead of a table. If you don't won't the structure to break in small display, you really should use a table.

Post a Comment for "Div Table (4x4)"