尝试在此站点上使用以下 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 中的呈现方式不同。看起来是底部属性的问题。