引导表中的额外列

时间:2019-05-01 10:19:59

标签: html css twitter-bootstrap html-table bootstrap-4

为什么表格中有多余的一列? table image

select Max(qryTRInputPriorityList_SS.DT1) AS MaxOfDT1
From qryTRinputPriorityList_SS
UNION ALL select Max(qryTRInputPriorityList_MB.DT1) AS MaxOfDT1
From qryTRinputPriorityList_MB
UNION ALL select Max(qryTRInputPriorityList_GS.DT1) AS MaxOfDT1
From qryTRinputPriorityList_GS;

为什么表格中有多余的一列? see image

还有,为什么屏幕小时会有滚动条? (当我使用 table-sensitive 时,它应该在屏幕上进行自我调整。)

2 个答案:

答案 0 :(得分:1)

.table-responsive类添加到父级。不在桌子上

<div class="table-responsive">
  <table class="table">
    ...
  </table>
</div>

答案 1 :(得分:0)

删除.table-responsive或在表标签 display : table

上添加样式属性