我想为我的网站创建一个固定的标题。这是我目前所拥有的:http://www.hidesertheat.com/test/index.html
我需要标题显示在我的滑块上。我错过了什么?我似乎无法弄明白。
答案 0 :(得分:2)
为类提供z-index属性' header_menu'。我用以下财产检查了萤火虫并且工作正常。
.header_menu{
z-index: 999;
}
答案 1 :(得分:0)
.header_menu {
background-attachment: scroll;
background-clip: border-box;
background-color: #000000;
background-image: url("http://fc06.deviantart.net/fs70/f/2014/112/b/a/header_bg_by_destinyjade-d7flhv4.png");
background-origin: padding-box;
background-position: 0 0;
background-repeat: repeat-x, repeat;
background-size: auto auto;
position: fixed;
width: 100%;
z-index: 10000;
}