1

我的网站顶部有一个固定位置导航。我正在使用 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;
}
4

1 回答 1

0

调整窗口大小时调用您的函数

$(function() {
    $(window).on('resize', function() {
        contentTopMargin();
    });
});
于 2012-05-10T15:53:11.363 回答