当前位置: 代码迷 >> HTML/CSS >> css正中
  详细解决方案

css正中

热度:100   发布时间:2012-10-30 16:13:36.0
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>




  相关解决方案