我該如何更改CSS代碼,使徽標(#logo)在左上角出現在所有其他div上?較高的Z-index值不會改變位置:/例如,當您單擊「沙龍」並滾動時,圖片和文本將滾動到徽標上方,而不是下方。如何在內容上放置徽標? (Z-Index被忽略)
這裏的鏈接: http://hosting2022.esy.es/
/* HEADER WITH LOGO */
header {
width:100%;
position: fixed;
top: 0px;
z-index:2000;
height: 80px;
}
#header-wrapper {
width: 1280px;
margin: 0 auto;
z-index:9999;
height:80px;
line-height:80px;
position:relative;
}
#logo {
margin:20px 0;
height:40px;
width:auto;
float:left;
}
/* MAIN DIV WITH MENU AND CONTENT-DIV*/
#mainx {
padding: 0 0 0 0 !important;
margin: 0 !important;
border: 0 !important;
position: fixed;
z-index: 11000;
}
/* THE MENU DIV */
#menuxx {
line-height:50%;
z-index:21000;
top:35px;
right:105px;
width:450px;
height:70px;
position:fixed;
}
/*CONTENT DIV -> Should be placed under the logo and menu*/
#Salon {
top:0;
margin-left: auto;
margin-right: auto;
width: 100%;
height:100%;
position:fixed;
overflow:hidden;
}
請添加代碼在你的問題 –
你的意思是說可以你請解釋一下。? –
我希望代碼片段有所幫助。該網站的標誌應始終位於所有div的頂部。 – Martin