在我的應用程序中,我必須顯示bootsatarp網格數據庫記錄。由於記錄數量足夠大,無需整頁滾動查看,我用自舉預滾動div來包裝我的表格,它給了我滾動表格的功能。然而,DIV大小一直是瀏覽器窗口的一半。我嘗試了幾乎所有的堆棧溢出帖子和建議,只是他們不適合我。我也試圖用java腳本來解決這個問題,但也失敗了。固定高度的自舉預滾動DIV
這是我的HTML代碼
<div class="col-md-9">
<div class="pre-scrollable">
<table class="table table-bordered table-hover header-fixed" id="sometable">
<thead>
<tr>
<th>EMP_No</th>
<th>Name</th>
<th>Designation</th>
<th>Department</th>
<th>Type</th>
<th>#Days</th>
<th>Start Date</th>
<th>End Date</th>
<th>Half day</th>
<th>Status</th>
</tr>
</thead>
<tbody>
</tbody>
<?php //php code for print the table
?>
</div>
</div>
我上面填充表的PHP代碼的結果。我沒有想法如何將這個DIV的高度設置爲固定值或windows.below是在使用
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: center;
padding: 1px;
}
thead th {
text-align: center;
background-color: #3498db;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
謝謝!這簡單地解決了這個問題。 –