1
我在我的AspNet Web API項目中有一個Bootstrap響應表,它不會在表格中顯示腳文字。我的腳文本顯示在表格外部的頁面頂部。我的意思是,我試圖保持引導模式,以底部的頁腳,但我不能,這是我的HTML結構:Boostrap表底部不顯示
<div class="container">
<div class="table-responsive">
<table class="table table-bordered table-hover" id="Countries">
<thead>
<tr>
<th>
CountryId
</th>
<th>
CountryName
</th>
<th class="col-md-2">
Action
</th>
</tr>
</thead>
<tbody class="tbody"></tbody>
<tfoot> All text I put here shows at the top of the page outside of the table</tfoot>
</table>
</div>
</div>
非常感謝您!現在它正在工作..... –