我需要将导航集中在这个网站(http://beautra.weebly.com/),任何想法?这是代码,我尝试使用inspect元素工具,但我无法解决它。代码似乎很简单,但我不知道如何使用jsfiddle。任何帮助也将不胜感激。谢谢,
/* Navigation --------------------------------------------------------------------------------*/
#topnav {
clear: both;
text-align:center;
background: url(nav-left.png) no-repeat;
padding-left: 8px;
width: 971px;
}
#nav-right {
background: url(nav-right.png) right top no-repeat;
padding-right: 10px;
}
#nav-inner {
background: url(nav-inner.png) repeat-x;
padding: 2px 5px 3px;
}
#topnav ul {
list-style: none;
float: none;
background: url(nav-sep.jpg) no-repeat left center;
}
#topnav ul li {
list-style: none;
float: left;
background: url(nav-sep.jpg) no-repeat right center;
padding-right: 2px;
}
#topnav a {
float: left;
text-align:center;
display: block;
color: #989899;
text-decoration: none;
padding: 19px 38px;
border: 0;
outline: 0;
list-style-type: none;
font-size: .9em;
}
#topnav li#active a,
#topnav a:hover {
transition: 0.5s;
-moz-transition: 0.5s;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
color: #ed53ae;
background: #090909 url(nav-active.png);
border: 0;
}
答案 0 :(得分:0)
我建议让孩子ul
元素inline-block
。
#nav-inner > ul {
display: inline-block;
}
然后将text-align:center
添加到父元素#nav-inner
。
#nav-inner {
text-align: center;
background: url(theme/nav-inner.png?486154) repeat-x;
padding: 2px 5px 3px;
}
这将确保菜单无论其尺寸如何都居中 - 适用于动态内容(即,您无需设置固定宽度并使用margin:0 auto
..)。