如何使用960.gs将div带到屏幕的中心

时间:2012-05-05 10:34:37

标签: html css css3 960.gs

我想知道,我们如何使用CSS和960.gs水平和垂直地将div带到屏幕中心

2 个答案:

答案 0 :(得分:2)

960.gs不是相对居中(即使用百分比)。这是关于选择页面的宽度(在这种情况下为960像素)并将其分开。您可以通过选择要开始的网格并选择宽度来“居中”div(总网格 - 开始网格)。

对于网格本身的水平居中,您可以执行960.gs演示中的内容:

.container_12 {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

答案 1 :(得分:1)

div { 
    position:absolute;
    left: 50%;
    top: 50%;
    width:""px;
    height:""px;
    margin:half the length of width; half the length of height; 
}