css - Height 100% for parent div not working in IE11 -
this code works on google chrome, height minimized in ie11; expands when click on links in menu. , font size increases in ie; need help.
tried setting parent div height 1000px; way not minimize height. when click on link display content not display content. highly appreciated.
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>
Comments
Post a Comment