0

如何在 IE7 中添加负边距?我的代码是:

.product-tabs {
    position: relative;
    margin: -40px 0 0 -17px;
}

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

4

1 回答 1

0

习惯了这个

.product-tabs {
    position: relative;

top:-40px;
left:-17px;bottom:0;
}
于 2013-04-26T11:29:51.903 回答