Chrome:文字容器不是100%高度

时间:2013-11-04 13:57:12

标签: css google-chrome html

我在Google Chromem上的儿童容器上拥有100%高度的问题,在Firefox上工作非常好。

这是链接:

http://linco.com.py/beta/multiplaza/cartelera.php

主要容器:

position: relative;
width: 23%;
height: 0px;
padding-bottom: 30%;
margin-left: 1.5%;
margin-top: 20px;
float: left;

子容器:

z-index: 2;
position: absolute;
opacity: 0;
background: rgba(255,255,255,0.8);
width: 100%;
height: 100%;
left: 0;
display: table;
cursor: default;

我做错了什么?谢谢!

1 个答案:

答案 0 :(得分:1)

您需要做的就是删除行display:table,它会起作用。