嘿伙计们,所以我有以下内容:
这是我用来在 JQuery 中访问的导航、表格……这是一张照片:
现在,当我单击其中一个链接时,会弹出一个表格,如下所示:
问题在于,在 IE 中,顶部和底部之间存在巨大差距,即使它们是display:none
(单击导航链接时打开的表格)。
这是我在 IE 中的意思:
这是表容器布局:
<div class="csvemployeestools">
<div class="MemberopenstatusViewer">
<div class="OpenstatusViewertable">
table that is opened depending on which link clicked in nav....
</div>
<div>
.....
</div> <!-- after all tables are defined, this closes it out.
CSS:
.csvemployeestools{
margin-top: 2%;
overflow: hidden;
}
.MemberopenstatusViewer{
display:block;
/*float:left;*/
margin: 0 auto;
font-family: Helvetica, Arial, Sans-Serif;
font-weight: bold;
font-size: .7em;
width:100%;
/*overflow-x: scroll;*/
}
.OpenstatusViewertable {
width:100%;
max-height: 300px;
overflow-y: scroll;
margin-bottom: 3%;
}