我用图像替换了我的一个菜单项,并使用下面的代码对其进行了样式设置。它在 Firefox、Chrome、Safari 和 Opera 中看起来不错,但在 IE 中似乎忽略了相对定位。
li#menu-item-19 a {
display: block;
background-image: url('images/logo.png');
background-repeat: no-repeat;
width: 124px;
height: 120px;
text-indent: -9000px;
margin-right: -42.5px;
margin-left: -42.5px;
position: relative;
top: -31px;
margin-top: -31px;
z-index: 1;
}
我不会显示完整的站点,因为它不是实时的,但我已经设置了一个更简单的版本,我已经能够复制这个问题。
谢谢 :)