画像のテーブルのようなテーブルをデザインしたいです。
空タグを使用してスペースを適用し、次にcssを使用して白くすることはできますが、そのようなコードは醜いです。
これは私が現時点で持っているものです:
<table id="specs">
<tr>
<th class="thead" >A</th>
<th class="thead">B</th>
<th class="thead">C</th>
<th class="thead">D</th>
<th class="thead">E</th>
</tr>
<tr class="alt">
<td class="type2">1</td>
<td class="type">2</td>
<td class="type">3</td>
<td class="type"> 4</td>
<td class="type">5%</td>
<td class="type" style="border-top:10px solid white;">6</td>
</tr>
<tr>
<td class="type2">7</td>
<td class="type">8</td>
<td class="type">9</td>
<td class="type">10</td>
<td class="type">11</td>
<td class="type">12</td>
</tr>
</table>
CSS:
#specs {
color: #0099FF;
font-size: 13px;
border-collapse: collapse;
}
#specs th {
background-color: #0099FF;
color: white;
padding-left: 50px;
padding-right: 10px;
border-bottom: 10px solid white;
}
#specs tr.alt td {
background-color: #C0D9D9;
}
#specs th.thead {
padding-right: 30px;
text-align: center;
}
#specs tr td.type2 {
border-left: 10px solid white;
text-align: left;
}