I have this css code:
.row {
width:100%;
height:100px;
}
.square {
width:100px;
height:100px;
}
I would like to put 5 squares div inside the row div
, but I want to put it justified
, so that the separation between squares should be equal depending on the window size of the user.
I wonder what would be better, margin
, float
, positioning absolute/relative
, etc.