DIV定位问题

时间:2012-07-16 19:59:35

标签: css css-float css-sprites

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

#rack #header #logo {

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

1 个答案:

答案 0 :(得分:4)

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

使用此,

#rack #header #logo {    
    float: left;
    height: auto;
    width: auto;
    margin-bottom: -54px;
    z-index: 100;
    position: relative;
}