父母div的高度100%不在IE11中工作

时间:2016-11-10 07:24:22

标签: css

enter image description here此代码适用于Google Chrome,但IE11的高度最小化;它只在我点击菜单中的链接时才会展开。 IE中的字体大小也增加了;我需要帮助 我尝试将父div高度设置为1000px;这样它不会降低高度。但是,当您单击链接以显示内容时,它不会显示所有内容。任何帮助将受到高度赞赏。



html {
  font-size: 62.5%;
  height: 100%;
}
body {
  font-size: 1.4rem;
  height: 100%;
}
@media (min-width: 1200px) {
  .container-fluid-full {
    overflow: hidden;
    position: relative;
    height: 100%;
  }
  #content {
    width: 85.578%;
    padding: 28px;
    margin: 0px 0px;
    margin-left: 14.422% !important;
    height: 100%;
  }
  #sidebar-left {
    background: #eeeeee;
    border-style: solid;
    border-right: thick #edf0f4;
    margin-left: 0px !important;
    position: absolute;
    height: 100%;
  }

<div class="container-fluid-full">
  <div class="row-fluid">
    <!-- start: Main Menu -->
    <div id="sidebar-left" class="span2">
    </div>
  </div>
  <div id="content">
  </div>
</div>
&#13;
&#13;
&#13;

screenshot

0 个答案:

没有答案