やあ皆さん、私は次のことを持っています:
これは、JQuery、テーブルでアクセスするために使用する私のナビゲーションです...ここに写真があります:
リンクの 1 つをクリックすると、次のような表がポップアップ表示されます。
display:none
問題は、IE では(ナビゲーション リンクをクリックしたときに開かれるテーブル) にもかかわらず、上から下までの間に大きなギャップがあることです。
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%;
}