我正在尝试设置一个居中的导航栏,左侧有一个徽标。
以下是一个很好的例子:http://www.bootply.com/98314
我想要一些类似于该示例的东西,而是将左侧浮动的项目与Brand交换。我会在那里保留正确浮动的物品。
我目前有这个:http://www.bootply.com/p6XOQQFZQT(不要担心没有垂直对齐的文字)
正如您所看到的,如果您移除浮动左侧元素,导航栏会居中,这意味着包含浮动左侧元素,导航栏并未真正居中于页面上。
我认为我需要让导航元素的位置绝对,以便它们粘在中间,但每次我执行此操作时,它只会移除整个导航栏背景,而您几乎看不到文本。
我感谢所有人的帮助!
答案 0 :(得分:0)
DEMO: http://jsfiddle.net/6qcrevxe/
header {
background: #333;
width: 100%;
}
.global-nav {
font-size: 13px;
text-align: center;
list-style-type: none;
background-color: #205081;
line-height: 40px;
border-bottom: 1px solid #235990;
position: relative;
}
.global-nav ul {
padding: 10px 0;
margin: 0;
}
.global-nav li {
display: inline-block;
}
.nav-link a {
padding: 13px;
color: #fff;
text-decoration: none;
}
.nav-link:hover {
background-color: #235990;
color: #fff;
}
.nav-left {
position: absolute;
left: 10px;
top: 10px;
}