Уменьшен размер шрифта содержимого таблицы начальной загрузки - PullRequest
0 голосов
/ 06 октября 2019

Я хотел бы уменьшить размер шрифта в моей таблице начальной загрузки.

<table class="table table-responsive table-striped table-bordered table-sm table-condensed">
  <thead class="thead-light">
    <tr>
      <th>First Name</th>
      <th>Middle Name</th>
      <th>Last Name</th>

    </tr>
  </thead>

  <tbody>
      <tr>
        <td>Hans</td>
        <td>Der</td>
        <td>Man</td>     
    </tr>
  </tbody>
</table>

Вот мой CSS:

/* tables */

.table {
    border-radius: 0px;
    width: 50%;
    margin: 0px auto;
    float: none;
}

.table-condensed{
  font-size: 5px;
}

Проблема в том, что свойство table-condensed влияет только на строку заголовка таблицы, а не на остальные строки. image showing different font size in header row with the rest of the rows

Мне интересно, почему tbody не выбирает размер шрифта, заданный table-condensed. Есть идеи?

...