日期:2014-05-17  浏览次数:20569 次

css居中
<style type="text/css">
css居中
<!--方法一-->
body{text-align:center;
min-width:1000px;}
#wrapper{
width:980px;
margin:0 auto;
text-align:left;
}
<!--方法二-->
#wrapper{
width:980px;
position:relative;
left:50%;
margin-left:-540px;
}
</style>
</head>
<body>
<div id="wrapper">
</div>
</body>