Has anyone found instances where setting margin-right and left to auto will not center the page in IE? I cannot find any instances where this should be the case, but for some reason, it's happening. Some psuedo code is below.
Any help is appreciated!
- George
Code:
<html>
<head>
<style>
#container { width: 760px; margin-right: auto; margin-left: auto; }
</style>
<body>
<div id="container">
page content goes here
</div>
</body>
</html>
Any help is appreciated!
- George