Я пытаюсь центрировать span
в tbody
, но я не уверен, как это сделать, и я не знаю, допустима ли эта структура, если я не включаю tr
и td
элементы.
html
<table class="table">
<thead>
<tr>
<th>Rank</th>
<th>
<div>Name</div>
</th>
<th>
<div>Age</div>
</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<div><span>You haven’t added any data yet</span></div>
</tbody>
</table>
css
tbody div {
display: table-row;
}
tbody div span{
display: block;
text-align: center;
width: 100%;
}
![enter image description here](https://i.stack.imgur.com/GPrCG.png)