我试图让一个带有彩色背景的简单包装器 div 以 iPad 为中心,从右到左,这样它就可以亲吻浏览器的两侧。我的代码如下。包装纸没有居中。它从窗口左侧开始 10 个像素。对此必须有一个简单的答案,但我似乎无法理解我做错了什么。你能帮我吗?
<style type="text/css">
<!--
body {
background-color: #FFF;
}
#wrapper {
width:980px;
height:980px;
margin-left:auto;
margin-right:auto;
background-color:#666666;
}
</style>
<body>
<div id="wrapper">
This is a test
</div>
</body>