在safari中使用上边距的CSS问题

时间:2012-01-13 02:53:53

标签: css safari margin

我无法在野生动物园中获得最高利润。 CSS工作正常,#divcontainer有一个上边距,并在firefox和其他浏览器中居中,但不在safari中。

我希望在容器上方显示10px空间,以容纳所有其他内容。

这是CSS:

/* CSS Document */

body {

    color: #000000; /*This sets all text to Black*/
    /*background-color: #FFFFFF; /*This sets the bacground to white*/
    margin: 100px auto; /*This sets the margin to zero*/
    padding:0;
    font-size:12px;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    text-align:center;
}
p {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
}
h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000099;
}
h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000099;
}
h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000099;
}
.redtext {
    color: #FF0000;
}
a {
    color: #009900;
}
a:link {
    color: #000099;
    text-decoration: underline;
}
a:visited {
    color: #666666;
    text-decoration: none;

}
a:hover {
    text-decoration: none;
    background-color: #CCCCCC;
}
a:active {
    text-decoration: none;

}

.menu {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #000000;
}
.menu a:link {
    color: #336600;
    text-decoration: none;
}
.menu a:visited {
    color: #666666;
    text-decoration: none;
}

.menu a:hover {
    color: #990000;
    text-decoration: none;
}

.menu a:active {
    color: #666666;
    text-decoration: none;
}
div#container {
    width: 960px;
    height:760;
    overflow:auto;
    /*margin-left:0 auto; /* the auto value on the sides, coupled with the width, centers the layout */

}
div#outer {
    margin-left: auto;
    margin-right: auto;
    width: 960px;
}
div#header {
    position:relative;
    text-align: center;
    width: auto;
}
div#nav {
    width: auto;
    padding: 10px;
    margin-top: 1px;
    position:relative;
}
div#main {
    position:relative;
    width: auto;
}
div#footer {
    position:relative;
    width:auto;
    padding: 15px;
    margin: 0px;
}#nav {
    position: relative;
    padding:20px;
    width: auto;
}

1 个答案:

答案 0 :(得分:2)

您可能想要设置保证金:10px auto;在#container上。通常,我这样做:

body {
 text-align: center;
 padding: 0;
 margin: 0;
}

#container {
  width: 960px;
  height: 760px;
  text-align: left;
  margin: 10px auto;
}

...假设#container div是第一个元素,应该可以解决。

您可能还想尝试其中一个css重置文件。