Problem with tables in bootstrap 4 in linux

0

Some time ago I have been working on Windows and I have an old PC with linux mint for some things. A few days ago on my computer I use often install linux mint 18.3 but when I was designing a page with bootstrap 4 I find that certain things do not work for me. As the classes: .table-hover, .table-striped, etc. Looking at the web from the other pc (which has linux mint as I mentioned), from my cell phone with android or windows everything works fine.

Already update the system kernel, I have the nvidia drivers updated. I tried several browsers. Activate and deactivate hardware acceleration (I was asked to try that but it did not work). And I do not know what else I did but I can not solve it.

The funny thing is that with the tables with "black style" (class: .table-dark) if all the tables work well.

If anyone has any clue to tell me, I would be very grateful.

Greetings!

I add one of the tables that I have as an example:

<div class="table-responsive">
  <table class="table table-bordered table-hover table-striped no-margin" id="cua-table">
    <thead>
      <tr>
        <th scope="col">#</th>
        <th scope="col">DNI</th>
        <th scope="col">Nombre</th>
        <th scope="col">Apellido</th>
      </tr>
    </thead>
    <tbody>
      <? if (!empty($lista["cuartelero"])) : ?>
        <? foreach($lista["cuartelero"] as $key => $row) :?>
          <tr>
            <td scope="row"><?=$key; ?></td>
            <td><?=$row["dni"]; ?></td>
            <td><?=$row["nombre"]; ?></td>
            <td><?=$row["apellido"]; ?></td>
          </tr>
        <? endforeach; ?>
      <? endif; ?>
    </tbody>
  </table>
</div>
    
asked by cundagus 01.06.2018 в 02:08
source

0 answers