直接贴代码
.header{
width: 100%;
position: fixed;
top: 0;
z-index: 1000;
}
如果你的header栏偏左或者偏右了,那加上left:0;或者right:0;即可
top:0;表示距离父元素顶部的距离为0,left和right同理
z-index是设置你内容显示的优先级,防止你页面的其他内容挡住你的header
所以优先级设置高一点,z-index高的会优先显示
如果是footer栏的话
只需要将top改成bottom即可