0

在下面的网页中,前 4 个对象翻转良好且平滑,而第 2 行中的 2 个对象有时甚至在鼠标悬停在第 2 行 2 个框之间的空白区域上时甚至会翻转,这可能会消失错误的。

点击

4

1 回答 1

0

尝试将此css属性与!important

#nav-list-example li div {
  width: 200px;
  height: 300px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0 !important; //<-----this one with !important
}

left: 135px;这导致了这个问题。按照上面的建议修复它。

于 2013-03-24T06:47:13.090 回答