页面居中的一种,适应绝大多数情况
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>DIV+CSS之页面居中显示</title>
- <style type="text/css">
- #container {text-align:center;margin-left:auto;margin-right:auto;width:960px;}
- </style>
- </head>
- <body>
- <div id="container">
- <div id="header">
- Header There........
- </div>
- <div id="main">
- Main There............
- </div>
- <div id="footer">
- Footer There ............
- </div>
- </div>
- </body>
- </html>
本文转自kefirking 51CTO博客,原文链接:http://blog.51cto.com/phpzf/782058,如需转载请自行联系原作者