У меня есть таблица намотки бутстрапа, и я пытаюсь выровнять заголовки столбцов в середине с помощью <th align="center">
. Кажется, что это не влияет на таблицу, но <td align="center">
работает правильно.
Это мой код:
<table class="table table-hover">
<thead>
<tr>
<th>Title</th>
<th>Score</th>
<th align="center">Product</th> #This line is not working
<th>Who Reviewed</th>
<th>When</th>
</tr>
</thead>
<tbody>
{% for review in object_list %}
<tr>
<td><a href="{% url 'backend_reviews_edit' review.pk %}">{{review.title}}</a></td>
<td align="center">{{ review.score }}</td>
<td align="center">{{ review.product.title }}</td>
<td>{{ review.reviewer_name}}</td>
<td>{{ review.date_created|date:"m-d-Y" }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>