Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Columns Look Bunched Up Re: Columns Look Bunched Up

#136893
CrocoDillon
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.