Business Search Local

Business Search Local is an innovative web company based in the North East of England, providing web solutions and search engine optimisation consulting to clients throughout the UK.
Ask me anything

CSS, centre your html.

Ever had a problem trying to centre your website without using tables?  Here you go, a nice and easy way to do it purely by CSS.

Set up your wrapping div in the CSS like so;

#wrapper {

width: 60em;

margin: 0 auto;

}

Then simply wrap your entire page within the wrapping tag;

<div id=”wrapper”>

centred content goes here!

</div>

Chris

More Information