0

在此页面上添加空手道图像后,它会从徽标上切掉一些块。我尝试使用z-index负边距,但它并没有解决问题。我希望标志留在空手道图像的顶部。CSS如下所示:

#rack #header #logo {

    float: left;
    height: auto;
    width: auto;
    margin-bottom: -54px;
    z-index: -999;
}
4

1 回答 1

4

z-index仅适用于position:relativeor position:absolute

用这个,

#rack #header #logo {    
    float: left;
    height: auto;
    width: auto;
    margin-bottom: -54px;
    z-index: 100;
    position: relative;
}
于 2012-07-16T20:01:42.543 回答