-1

我正在尝试调整 z 索引顺序,以使第一类比第二类更接近。

但我一辈子都不能得到一个盒子阴影来显示。

    .title {
        background-image: linear-gradient(bottom, rgb(249,252,249) 33%, rgb(255,255,255) 37%);
        background-image: -o-linear-gradient(bottom, rgb(249,252,249) 33%, rgb(255,255,255) 37%);
        background-image: -moz-linear-gradient(bottom, rgb(249,252,249) 33%, rgb(255,255,255) 37%);
        background-image: -webkit-linear-gradient(bottom, rgb(249,252,249) 33%, rgb(255,255,255) 37%);
        background-image: -ms-linear-gradient(bottom, rgb(249,252,249) 33%, rgb(255,255,255) 37%);

        background-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(0.33, rgb(249,252,249)),
            color-stop(0.37, rgb(255,255,255))
        );
        box-shadow: 0px 1px 5px rgba(0,0,0,1);
        height: 50px;
        z-index: 1;
    }

.banner {
    background-image:url('images/grad.jpg');
    background-color:#cccccc;
    height: 500px;
    z-index: -1;
}

但这对我不起作用。

标记>

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Design Test | PolyDevs</title>
<link rel="stylesheet" type="text/css" href="style.css">
<div class="header">
    <div class="title">
        <div class="logo">
            <img src="images/banner.png"/>
        </div>
    </div>
</div>
</head>
<body>
<div class="banner">

</div>
</body>
</html>
4

1 回答 1

0

位置:相对;解决了我的问题,这是为什么呢?

绝对定位元素表现为由一个相对定位的父元素定位。

如果没有元素是相对定位的<body>,则默认情况下相对定位的元素将成为指定“从”位置(左、右、下、上)的父元素

例子:

<body>
 <div class="posrelative">
  <div class="posabsolute">hello world</div>
 </div>
 </body>

Hello world不能根据父包装的位置进行绝对定位<div>,这可能是侧边栏或页脚等...

<body>
 <div>
  <div class="posabsolute">hello world</div>
 </div>
</body>

Hello world现在可以绝对定位,但不再基于 parent 的位置<div>,而是基于离开的位置<body>,默认情况下填充浏览器窗口的整个宽度

于 2013-10-26T23:52:51.107 回答