ウェブサイトの上部に固定位置のナビゲーションがあります。私はouterHeightを使用してナビゲーションコンテナの高さを取得し、それをナビゲーションの下のコンテンツのコンテナの上部パディングとして追加しています。ウィンドウを縮小してナビゲーションが複数行に折り返されない限り、これはすべてうまく機能します。ChromeとIEでは、outerHeightは、行が折り返されていなかったかのように測定されます(Firefoxでは正常に機能します)。
JS
function contentTopMargin() {
var topHeight = $('#topNavContainer').outerHeight(true) - 1;
$('#container').css('padding-top', topHeight + 'px');
}
$(document).ready(function() {
contentTopMargin();
});
$(window).resize(function() {
contentTopMargin();
});
HTML
<header id="topNavContainer">
<nav id="topNav">
<div class="current navItem"><a href="#1">item 1</a></div>
<div class="navItem"><a href="#2">item 2</a></div>
<div class="navItem"><a href="#3">item 3</a></div>
<div class="navItem"><a href="#4">item 4</a></div>
<div class="navItem"><a href="#5">item 5</a></div>
<div class="clearDiv"></div><!-- for clearing floats -->
</nav>
</header>
<div id="container">
Some content
</div>
CSS
#topNavContainer {
position: fixed;
width: 100%;
background: #333;
}
#topNav {
padding-top: 3.5rem;
padding-bottom: 1.5rem;
margin: 0 auto;
max-width: 1200px;
width: 90%;
border-bottom: 1px solid #b1bdbe;
}
#topNav div.navItem {
display: block;
float: left;
margin-right: 4%;
font-size: 1.4rem;
}
#container {
margin: 0 auto;
max-width: 1200px;
width: 90%;
padding-top: 7.5rem;
padding-bottom: 5rem;
}
.clearDiv {
clear: both;
}