The following works in firefox:
< div style="position:absolute;top:0px;margin-top:60px;bottom:0px;width:100%"> < div id="mainTabContainer" dojoType="dijit.layout.TabContainer" style="width:100%;height:100%"> {% for row in tabContent %} < div id="{{row.0}}" dojoType="dijit.layout.ContentPane" title="{{row.1}}"> {% include row.2 %} < /div> {% endfor %} < /div> < /div>
but in i.e. it doesn't display. When I take out the css on the outer div, it works.
I also tried just
< div style="position:absolute;top:0px;margin-top:60px;bottom:0px;width:100%"> < div style="width:100%;height:100%"> asdf < /div> < /div>
and that works fine. Does anyone know why the css would mess up rendering of the TabContainer in i.e.? Or is there a better way to make sure the TabContainer only takes up the space of the window (to prevent having two scrollbars--one for the container and one for the browser)? Thanks.