The .table td
's text-align is set to left, rather than center.
Adding this should center all your td
s:
.table td {
text-align: center;
}
@import url('https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css');_x000D_
table,_x000D_
thead,_x000D_
tr,_x000D_
tbody,_x000D_
th,_x000D_
td {_x000D_
text-align: center;_x000D_
}_x000D_
_x000D_
.table td {_x000D_
text-align: center;_x000D_
}
_x000D_
<table class="table">_x000D_
<thead>_x000D_
<tr>_x000D_
<th>1</th>_x000D_
<th>1</th>_x000D_
<th>1</th>_x000D_
<th>1</th>_x000D_
<th>2</th>_x000D_
<th>2</th>_x000D_
<th>2</th>_x000D_
<th>2</th>_x000D_
<th>3</th>_x000D_
<th>3</th>_x000D_
<th>3</th>_x000D_
<th>3</th>_x000D_
</tr>_x000D_
</thead>_x000D_
<tbody>_x000D_
<tr>_x000D_
<td colspan="4">Lorem</td>_x000D_
<td colspan="4">ipsum</td>_x000D_
<td colspan="4">dolor</td>_x000D_
</tr>_x000D_
</tbody>_x000D_
</table>
_x000D_