我的网页上的横幅区域有一个 jQuery 动画,该动画在正文负载上运行。横幅显示最初设置为无,然后在函数运行时更改。
function displayExpand()
{
$('#displayArea').slideDown('slow', function(){});
}
出于某种奇怪的原因,导航菜单的容器溢出,并且每个链接在页面的最右侧堆叠在其自身之上。更奇怪的是,这只发生在我刷新页面时。如果我从另一个链接访问该页面,导航菜单看起来会很好。它似乎也只在我在 chrome 中运行时才会发生
CSS
#linkContainer {
margin-top:20px;
float:right;
text-align:right;
height:55px;
}
HTML
<div id="linkContainer">
<div class="mybuttons" style="color:#C00; font-weight:bold;">Home</div>
<a href="about.html" style="text-decoration:none"><div class="mybuttons">About</div></a>
<a href="portfolio.html" style="text-decoration:none"><div class="mybuttons">Portfolio</div></a>
<a href="resume.html" style="text-decoration:none"><div class="mybuttons">Resume</div></a>
<a href="contact.html" style="text-decoration:none"><div class="mybuttons">Contact</div></a>
</div>
任何建议为什么?