set center position

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I use table layout and set table as a center position. There is one layer on
table. The content on layer is in diifferent positions when I use a different
brower. I want layer go with table. How can I fix it. Thanks.
 
Change this -

</head>

to this -

<style type="text/css">
<!--
body { text-align:center; }
#wrapper { text-align:left; width:760px; margin:0 auto;position:relative; }
/* 760px will display on an 800px screen maximized browser window without */
/* horizontal scrollbars. */
-->
</style>
</head>

change this -

<body ...>

to this -

<body ...>
<div id="wrapper">

and this -

</body>

to this -

<!-- /wrapper -->
</div>
</body>

and see if that helps.
 
Back
Top