私はテーブルを持っています。最初の列を左に揃え、他の列を右に揃えたいだけです。私は次のスタイルを使用します:
<style>
table{ width:100%;}
.1col{ text-align:left;}
.othercols{width:100px;}
table>tbody>tr>td, table>tbody>tr>th { text-align:center;}
</style>
それから私は私のテーブルを持っています:
<table>
<tr>
<th class="1col">Category</th>
<th class="othercols">Some text</th>
<th class="othercols">Some text</th>
<th class="othercols">Some text</th>
</tr>
<tr >
<td class="1col">Some text</td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
その結果、私の1colクラスは無視されます。何か案が?