5

我想达到与这张图片中的效果类似的效果:

在此处输入链接描述

基本上,我希望有一个 div 作为始终位于顶部的菜单栏——它下面的 div 是我的内容的容器 div。单击菜单栏中的任何链接只会更改容器 div 中的内容。

4

2 回答 2

10

您需要将该position: fixed;属性用于#top div。

<div id="top"></div>

#top {
  position:fixed;
  top:0px;
  width:100%;
  height:70px;
}
于 2011-03-05T20:11:48.020 回答
0

您需要有一个div并分配 CSS 类:

.className {
width: 100%;
position: fixed;
top: 0px;
height: 75px;
}

然后你div有:<div class="className">Whatever</div>

于 2011-03-05T20:13:32.717 回答