在此page上添加空手道图片后,它会切掉徽标上的一些块。我尝试使用z-index
和负边距,但它没有解决问题。我将徽标留在空手道图像的顶部。 CSS如下所示:
#rack #header #logo {
float: left;
height: auto;
width: auto;
margin-bottom: -54px;
z-index: -999;
}
答案 0 :(得分:4)
z-index
仅适用于position:relative
或position:absolute
。
使用此,
#rack #header #logo {
float: left;
height: auto;
width: auto;
margin-bottom: -54px;
z-index: 100;
position: relative;
}