1
我想爲我的網站創建一個固定標題。這是目前我有:http://www.hidesertheat.com/test/index.html固定標題不正常工作
我需要標題出現在我的滑塊。我錯過了什麼?我似乎無法弄清楚。
我想爲我的網站創建一個固定標題。這是目前我有:http://www.hidesertheat.com/test/index.html固定標題不正常工作
我需要標題出現在我的滑塊。我錯過了什麼?我似乎無法弄清楚。
爲類'header_menu'提供z-index屬性。我檢查了以下屬性的螢火蟲,並且工作得很好。
.header_menu{
z-index: 999;
}
.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;
}
這工作。非常感謝! – Destiny