0

http://www.mammacoil.com/

我正在努力使这个菜单居中,我尝试了边距自动 css,但它似乎没有工作。有人可以帮忙吗。

我将其设置为 100% 然后自动保证金会更容易吗?

#access {
clear: both;
margin-top: -20%;;
margin-left: 15%;
width: 100%;
font-family: SansitaOne;
font-weight: 100;
text-shadow: 2px 2px #000000;
height: 43px;
text-align: center;

}
#access ul {
font-size: 18px;
list-style: none;
}
#access li {
position: relative;
float: left;
}

先感谢您。

柯斯蒂

4

1 回答 1

1

你可以做到这一点,margin:0 auto;它适用于每个分辨率

并设置宽度

#access {
    clear: both;
    font-family: SansitaOne;
    font-weight: 100;
    height: 43px;
    margin: 0 auto;
    text-shadow: 2px 2px #000000;
    width: 960px;              <-----set this
}
于 2012-11-03T17:29:29.320 回答