我想根据标题上的类对齐表中的列。例如,如果我有下表:
<table>
<thead>
<th>Name</th>
<th class="price">Price</th>
</thead>
<tbody>
....
</tbody>
<table>
我知道我可以使用 :nth-of-type 但有时该列将是第 2 列,其他时间将是第 5 列,并且在某些地方我将在同一个表中的多个列向右对齐。
有没有办法做到这一点?我不需要支持旧版浏览器,甚至不需要 Internet Explorer 9(如果适用于 chrome 和/或 firefox 对我来说就足够了)
只是为了澄清起见,我想对齐与标题列相关联的正文中的列中的文本