如何在 IE7 中添加负边距?我的代码是:
.product-tabs {
position: relative;
margin: -40px 0 0 -17px;
}
在所有浏览器中,它的工作方式就像我在 IE7 中不一样,我尝试将边距替换为,top:-40px; left:-17px;
但随后块向上移动并在底部留下空白空间。我也尝试更改position: relative
为position: absolute
,但.product-tabs
父 div 高度为 0。