卡中的boostrap 4表出现问题

时间:2019-03-06 17:53:56

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

这是我的问题

Photo Error

如您所见,我不知道为什么表格在卡内使用了这种格式。 我需要表格居中,或者至少不显示此时显示的空白。 ...这是我的代码(使用6号角输入)

<div class="row">
          <div class="col-md-6">
            <div class="header">
              <h4 style="padding:10px" class="title">Dispositivo de Ejecucion</h4>
            </div>
            <div>
              <table class="table table-bordered table-condensed table-responsive ">
                <thead class="thead-dark">
                  <tr>
                    <th>Marca</th>
                    <th>Sistema Operativo</th>
                    <th>Version</th>
                    <th>Modelo</th>
                  </tr>
                </thead>
                <tbody>
                  <tr>
                    <td>{{dispositivoCdp[0].nombredispositivo}}</td>
                    <td>{{dispositivoCdp[0].sistema_operativo}}</td>
                    <td>{{dispositivoCdp[0].version}}</td>
                    <td>{{dispositivoCdp[0].modelo}}</td>
                  </tr>
                </tbody>

              </table>
            </div>


          </div>

          <div class="col-md-6 justify-content-center">

                <div class="header">
                    <h4 style="padding:10px" class="title">Tiempo de Ejecucion</h4>
                  </div>

                <table class="  table table-bordered table-responsive ">
                    <thead class="thead-dark">
                      <tr>
                        <th>Inicio</th>
                        <th>Fin</th>
                        <th>Duracion</th>
                      </tr>
                    </thead>

                    <tbody>
                      <tr>
                          <td>{{dispositivoCdp[0].nombredispositivo}}</td>
                          <td>{{dispositivoCdp[0].sistema_operativo}}</td>
                          <td>{{dispositivoCdp[0].version}}</td>

                      </tr>
                    </tbody>

                  </table>
          </div>

        </div>

对我在做什么错有什么建议吗?我尝试在表类中使用table-sm,但我不接受任何结果

2 个答案:

答案 0 :(得分:0)

尝试删除您班上的“表响应式”。 我认为这可以解决您的问题。

答案 1 :(得分:0)

使用此

 <table class="table table-bordered table-condensed table-responsive" style="display:table">