本文介绍了简单的CSS固定头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
将以下网页标题设为固定标题的最简单方法是什么?
如果我移动菜单元素
What is the easiest way to make the following page header a fixed header? http://presentationtube.com/header.phpShould I move the Menu elements in the header?
推荐答案
最简单的方法:
#templatemeo_header_wrapper {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 9999;
height: 70px;
}
这篇关于简单的CSS固定头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!