|
center html website using css and div |
|
Many time we need to center the html website. Centering the html website can be done very easily using css.
just put your complete html source code which is inside the body tag in one DIV tag and give id="wrapper".
And but below css code in your css file.
div#wrapper { max-width:1050px; min-width:750px; }
div#wrapper { margin-left:auto; margin-right:auto; } This css code for centering your html website will work in both Internet Explorer and Firefox.
|