0

我有一个 MasterPage(在 .net 中)并且我正在申请:

#wrapper {
  position: relative;
  margin: 0 auto;   
}

至 :

<body>
<div id = "wrapper" >
   here goes my content
</div>
</body>

但它不起作用....你能帮忙解决这个问题吗,请

4

4 回答 4

3

您还必须指定 div 宽度...

于 2012-05-01T09:56:17.177 回答
2

您需要为包装器提供宽度。例如width:960px

于 2012-05-01T09:56:51.303 回答
2

Margin Auto 仅在 DIV 具有固定宽度时有效

#wrapper {
           position: relative;
           margin: 0 auto;
           width: 950px;   
          }
于 2012-05-01T09:59:27.037 回答
1

您应该为该包装元素设置一个宽度,以使边距按预期工作。

于 2012-05-01T09:57:35.920 回答