溢出:可见在IE 7,8中无效

时间:2013-02-26 02:03:23

标签: html css

我无法让IE将图像溢出到顶部边框上。我将图像的上边距设置为负值,并将溢出设置为可见:

#th_id img {
    margin-top: -25px;
}

#th_id {
    overflow: visible;
}

我还尝试将表格的tr,tbody,table和div容器设置为溢出:可见但我仍然看到截断的图像而不是表格边框上溢出的图像。 Firefox似乎正确显示它。

1 个答案:

答案 0 :(得分:2)

我在IE 7中工作了。

  

尝试添加位置:relative。
我的代码看起来像这样。

#th_id img {
    position: relative;
    margin-top: -25px;
}

#th_id {
    position: relative;
    overflow: visible;
}
  希望它有所帮助..