私はこの表の特定の行の境界線を取り除こうとしています。私は男性とブランドのArmadaのために行の周りに境界線が欲しいが、中間のボトラーラインは持たないようにしたい。何らかの理由で私はtrクラスを使ってそれを取り除くことはできません。私が作っている間違いは何ですか?テーブルの特定の行に罫線を隠す、HTML CSS
table,
tr,
td,
th {
border: 1px solid;
border-collapse: collapse;
}
.noBorder {
border: 0;
}
<table>
<tr class="noBorder">
<th>Men</th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<th>Brand</th>
<th>Model</th>
<th>Waist</th>
<th>Lengths</th>
<th>Quick Description </th>
</tr>
<tr class="noBorder">
<th>Armada</th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<td>Armada</td>
<td>Tracer 88</td>
<td>88</td>
<td>162, 172</td>
<td>Cut with an 88mm waist width and Armada s snow-shedding Tapertop topsheet to minimize added weight from snow buildup, the Armada Tracer 88 Skis travel swiftly and efficiently uphill while the EST All-Mtn Rocker provides versatile performance on the
journey down.</td>
</tr>
回答を受け入れたものとしてマークしてください。 – dgrogan