Forums

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

Home Forums CSS Getting rid of excess white space Reply To: Getting rid of excess white space

#184181
Alen
Participant

Yup.


margin: 0 auto;

is a shorthand for


margin-top: 0;
margin-bottom: 0;
margin-left: auto;
margin-right: auto;

It centers block level elements with defined width.

http://codepen.io/anon/pen/EoxGD