两个高度相同的div - 父母和孩子

时间:2016-04-13 12:56:09

标签: css height

父母和孩子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%;

  }

0 个答案:

没有答案