Quote:
Originally Posted by Costin Trifan
First thing first: Don't use position absolute.
After that:
1. Add this div after your body tag (that is, wrap the content in this div): <div id="PageWrapper">
2. Add these style rules:
Code:
body {
margin: 0 auto 0 auto;
padding: 0;
text-align: center;
}
DIV#PageWrapper {
width: auto; height: auto;
margin: 0 auto 0 auto;
padding: 0;
text-align: left;
}
that should do it.
|
is this working on frameset? because frameset contain no <body> tag
anyway thanks.