Jul*_*lio 4 html css position fixed css-float
我希望获得与此图像中类似的效果:
在此处输入链接描述http://img843.imageshack.us/img843/8328/floatingheader.png
基本上,我希望有一个div作为菜单栏,总是在顶部 - 它下面的div是我的内容的容器div.单击菜单栏中的任何链接仅更改容器div中的内容.
您需要将该position: fixed;属性用于#top div.
<div id="top"></div>
#top {
position:fixed;
top:0px;
width:100%;
height:70px;
}
Run Code Online (Sandbox Code Playgroud)