我正在努力使这个菜单居中,我尝试了边缘自动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;
}
提前谢天谢地。
科斯蒂
答案 0 :(得分: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
}