父母和孩子div
有问题。我必须将它们设置为height: auto;
和min-height: 100%;
。但是,父母div陷入了100%的高度。我该如何设置它还会计算其子div的高度?
谢谢!
代码在这里:
#akce{
background: url('akce.png') center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: auto;
min-height: 100%;
display: block;
}
#text-correct{
background-color: rgba(0,0,0,0.5);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: auto;
min-height: 100%;
}