Now there seems to be a problem with
fixed width pages that were styled using CSS and the IE internet site browser. Now this trick is used to align an element on the center of a page, and it uses CSS styling techniques to do just so. But if you view a page that has been designed using this CSS trick on IE, the damn elements just can't seem to sit still in the center of the damn page! Totally fuming CSS experts have spent their precious time to solve this issue, and I now present you with a damn fix for fixed width page problems with IE. The damn CSS hack below should help you solve this problem once and for all.
Codes for this CSS Hack
< - start of code - >
body {
text-align: center
}
#container {
width: 770px;
margin: 0 auto;
text-align: left
}
< - start of code - >