2

現在画面に表示されているdivに応じてサイズが変わるメニューバーを作ろうとしています。

この行の何か: http://housing.com/dsl

メニューの現在の CSS とページの残りの HTML マークアップは次のとおりです。

<div class="menu">
    <a href="#content1">1</a>
    <a href="#content2">2</a>
</div>
<div class="content">
    <div class="content1" id="content1">
    </div>
    <div class="content2" id="content2">
    </div>
</div>

CSS

.menu{
    width:100%;
    height:80px;
    background-color: #336699;
    margin-top:-20px;
    margin: 0 auto; 
    margin-bottom: 10px;
    position:fixed;
}
4

1 に答える 1