0

尝试在此站点上使用以下 CSS 在悬停时显示 H3 :

  a > h3 {
  min-width: 100% !important;
  min-height: 100px;
  max-height: 100px;
  display: block;
  position: absolute;
  bottom: -80px;
  color: #FFF;
  padding: 25px 5px;
  box-sizing: border-box;
  -webkit-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;

  a:hover > h3 {
  bottom: 0;
  }

出于某种原因,这在 Firefox 中的呈现方式与在 Chrome 和 Safari 中的呈现方式不同。当 min-height 设置为 100px 时,它在 Chrome 和 Safari 中运行良好,当它设置为 50px 时,它在 Firefox 中运行良好。

4

1 回答 1

1

这可能是因为 Firefox(从 20.0.1 版开始)仍然需要-moz该属性的供应商前缀box-sizing,只需添加:

-moz-box-sizing: border-box;
于 2013-04-25T18:03:52.580 回答