Simple CSS fixed header

后端 未结 3 1964
隐瞒了意图╮
隐瞒了意图╮ 2021-01-27 14:29

What is the easiest way to make the following page header a fixed header? http://presentationtube.com/header.php Should I move the Menu elements in the header?

3条回答
  •  深忆病人
    2021-01-27 14:47

    the easiest way:

    #templatemeo_header_wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        height: 70px;
    }
    

提交回复
热议问题