-1

JSFiddle で表示している場合は、結果ウィンドウを大きくして、私が話していることを確認する必要があります。ロゴは半円とヘッダーの真上に配置し、ナビゲーションはヘッダーの中央に配置し、右揃えにする必要があります。

ここにフィドルがあります - http://jsfiddle.net/sPEXp/1/

HTML

    <div class="header">
        <div class="container">
            <a href="#"><img class="logo" src="img/onewaylogo.png"></a>
            <nav>
                <a href="#">Home</a>
                <a href="#">About</a>
                <a href="#">Let's Partner</a>
                <a href="#">Contact</a>
            </nav>
        </div>
    </div>

CSS

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f6f6f6;
    z-index: 10000;
    height: 100px;
}

.header .container {
    position: relative;
    height: 100px;
    width: 85%;
    margin: 0 auto;
    text-align: center;
}

.header:after {
    content: '';
    position: relative;
    bottom: 0;
    display: block;
    margin: 0 auto;
    background: #f6f6f6;
    width: 150px;
    height: 75px;
    border-radius: 0 0 75px 75px;
}

.header .logo,
.header nav a {
    line-height: 100px;
}

.header nav {
    float: right;
    position: relative;
    width: 320px;
}


.logo {
    position: relative;
    top: 50px;
    display: inline-block;
    width: 150px;
    height: 100px;
    z-index: 100000;
    margin: 0 auto;
}

.header nav a {
    color: #aaa;
    font-weight: 700;
    margin: 0 0 0 20px;
    font-size: .95em;
}

.header nav a:hover {
    color: #333;
}
4

1 に答える 1

1

フィドルワーキング

要素の幅と位置を次のように設定することで、要素を中央に配置できます absolute 。この場合:

.logo {
    position: absolute;
    margin: 0 50%;
    width: 150px;
    left: -75px; // total width half  (75px)
    ...
}
于 2013-08-03T20:20:10.570 に答える