Moz渲染底部属性与Webkit不同

时间:2013-04-03 20:59:33

标签: css browser mozilla

尝试在此site上使用以下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中的渲染效果不同。看起来是底部属性的问题。

1 个答案:

答案 0 :(得分:0)

出于某种原因,safari计算的“min-width”为250px,firefox为100%!

因此,框架布局在safari(ok)中为250x100,在firefox中为240x50。这可能是问题所在。 100%来自哪里(也许是同位素的js文件中的某个地方?)