Hello,
What is the code that enables the website CrazyEgg.com to remain centered whilst the browser window is resized?
Dysan
Printable View
Hello,
What is the code that enables the website CrazyEgg.com to remain centered whilst the browser window is resized?
Dysan
Wrap the entire page in a div called #wrap, and give it whatever width properties suit you. (a fixed value, a percentage or whatever)
Then body {
text-align:center;
}
#wrap {
width: you decide;
text-align:left;
margin:auto
}
Remember that if you use a min-width, max-width combination you'll need an IE conditional statement as well to cover all versions.