我正在创建一个网站,但即使z-index设置得更高,我的徽标也会在标题后面。我不知道为什么?我已经设定了定位,为什么它不起作用?叠加层都是透明的.png,因为我想让它与所有浏览器兼容,RGBa不兼容。
css是:
@charset "utf-8";
body {
margin-left: 0px;
margin-right:0px;
margin-top: 0px;
padding:0px;
z-index:-101;
}
#wrapper{
margin-left:17.3875%;
}
#BG {
height: auto;
width: 100%;
position: fixed;
z-index: -100;
left: 0px;
top: 0px;
min-height: 100%;
min-width: 1040px;
}
/*HEADER*/
/*===================================================================*/
#header{
margin:0px;
padding:0px;
z-index:-98;
position:fixed;
z-index:-99;
width:65.225%;
height:18.2022472%;
background:url(WireFrame/Nav%20Bar.png)
}
.logocontainer{
width:34.1510157%;
height:100%;
margin:0;
padding:0;
z-index:-1;
position:absolute;
}
.logoimage{
max-height:100%;
max-width:100%;
z-index:1;
position:absolute;
}
#navigation{
}
/*BODY*/
/*===================================================================*/
#bodyoverlay{
background:url(WireFrame/Body.png);
position:fixed;
z-index:-99;
height:100%;
width:65.225%;
background-repeat:repeat-y
}
#body{
z-index:-98;
height:100%;
width: 100%;
}
html是:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Home</title>
<link href="CSS.css" rel="stylesheet" type="text/css" />
</head>
<body>
<img src="file:///U|/Year 8/ICT/Webdesign/WireFrame/Background.jpg" name="BG" width="4000" height="2670" id="BG" />
<div id = "wrapper">
<header>
<div id = "header">
<div class="logocontainer">
<img src="WireFrame/Logo.png" class="logoimage" /> </div>
<nav>
<div id = "navigation"> </div>
</nav>
</div>
</header>
<!---->
<div id = "body">
<div id = "bodyoverlay">
</div>
<div id = "Content">
</div>
</div>
</div>
</body>
</html>
答案 0 :(得分:1)
使用z-index
属性的方式有很多问题:
position
的元素定义z-index
。z-index
并未完全排序页面中的所有内容 - 存在不同的堆叠上下文。z-index
)#header
es
以下是an excellent article on z-index that everyone should read,希望能帮助您解决代码中的问题。
答案 1 :(得分:0)
作为布局一部分的项目应该是CSS背景,而不是内嵌图像。它使所有这些问题突然消失。