Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个固定的标题,我的内容在标题后面滑动。我将如何阻止内容在其后面滑动。
简而言之,内容和固定菜单都是纸上谈兵。他们现在的行为就像他们在不同的平面上一样,我如何将它们放在“同一平面”上,就像放在桌子上一样。第二篇论文不应低于第一篇。
试着放
Clear:both;
在内容div中(在标题后面滑动的div)如果标题像您说的那样固定,则将内容div上的边距顶部放置到标题的高度。所以简单地说:
<div class='header'> </div> <div class='content'> </div>
CSS
.header{ position:fixed; width:100%; height:100px; } .content{ margin-top:100px; }