Home › Forums › CSS › Columns Look Bunched Up › Re: Columns Look Bunched Up
May 29, 2013 at 11:40 am
#136893
Participant
Only 3px margin won’t give you much white space. You can do it like this:
#footer .column {
float: left;
width: 16.6667%;
margin-left: 4.1667%;
}
#footer .column:first-child {
margin-left: 0;
}
At 60em width this gives you 5x 10em columns with 2.5em gutter.