Home › Forums › CSS › Getting rid of excess white space › Reply To: Getting rid of excess white space
September 22, 2014 at 9:59 pm
#184181
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.