我以前从未见过caption-side
。
在处理 HTML 表格时可以使用该属性。表可能包含一个caption元素。元素的线索caption
是它们必须是表中的第一个元素。
此规则使它们通常出现在表格的顶部区域,并且不提供不同位置的选项。
<table>
<caption>Populations of cities</caption>
<thead>
<tr>
<th>City</th>
<th>Population</th>
</tr>
</thead>
<tr>