导航菜单中间的中心徽标

时间:2014-02-27 00:55:05

标签: html css html5 css3

我希望在我的中心顶部导航菜单中间显示我的徽标。就目前而言,我的徽标就位于其上方。如果我将菜单项分成不同的容器,然后使用边距和填充来完成此操作,这会是最简单的吗?还是有更有效的方式?

这是一个JS小提琴,展示了我目前的情景。 JS Fiddle

这是我目前的CSS:

.container {
width:960px;
margin:0 auto;
}
header, main{
    display: block;
}
.container-narrow {
margin:0 auto;
width:640px;
}

h1.logo {
width:300px;
margin:0 auto;
text-indent:100%;
overflow:hidden;
white-space:nowrap;
}

body h1 {
background:url(http://placehold.it/300x80) no-repeat;
height:80px;
}

body section.menu,body header.top-section {
background:url(../img/menu-bg.png) repeat;
padding:60px 0;
}

body header.top-section {
padding:40px 0;
position:absolute;
top:0;
left:0;
width:100%;
z-index:50;
}

#menu_container {
    letter-spacing: 2px;
    font-family:'intro_regular', sans-serif;
    font-size: 1.3em;
    line-height: 1.3em;
    position: fixed;
    margin: 0;
    /*margin-top: -70px;
    position: relative;*/
    z-index: 20;
    left: 0;
    right: 0;
    text-align: center;
    padding: 6px;
    height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
#menu_container .nav ul { list-style: none; overflow: auto; }
#menu_container .nav li { float: left; padding: 0.4em 0.8em; font-size: 0.9em; line-height: 1em; cursor: pointer; }
#menu_container .nav li a { text-decoration: none; text-transform: uppercase; }
#menu_container .nav li:hover a,
#menu_container .nav li.active a { color: #fff !important; }
#menu_container .nav li.contact_screen:hover a,
#menu_container .nav li.contact_screen.active a { color: white !important; }
#menu_container .nav li a { color: #000000; }
#menu_container .nav li a { transition: all 400ms; -webkit-transition: all 400ms; }
#menu_links { display: inline-block; }
#menu_button { display: none; color: white; cursor: pointer; text-align: right; padding: 0 0.8em; }
#menu_button i { font-size: 1.3em; margin-right: -0.3em; color:#bc9321;}
#menu_links li:first-child {}

3 个答案:

答案 0 :(得分:2)

我最近遇到了这种情况。我通过绝对定位徽标来使用它,然后使用:nth-child选择器来定位徽标两侧的元素并添加边距以腾出空间。

Here's the Fiddle

:nth-child很棒,但您可能需要older browsers的后备样式集。

答案 1 :(得分:1)

您是否考虑过CSS3显示:flex?

http://css-tricks.com/snippets/css/a-guide-to-flexbox/

答案 2 :(得分:-1)

你可以将你的徽标类放在中间。

        <div id="menu_links" class="nav">
            <ul>
                <li class="home_link"><a href="#splash_wrapper">Home</a></li>
                <li class="menus_link"><a href="#menus_wrapper">Menus</a></li>  
<li class="logo">Restauraunt</li
                <li class="contact_link"><a href="#contact_wrapper">Contact</a></li>
                <li class="reservations_link"><a href="#reservations_wrapper">Reservations</a></li>
            </ul>
        </div>

然后将h1.logo更改为li.logo。