JSFiddle - React, Tailwind, and code Playground
by rough cheap
HTML
<h2>CPU</h2>
<table class="cinebench" style="width:100%;">
<thead>
<tr>
<th style="">Model</th>
<th style="">ベースクロック</th>
<th style="">ブーストクロック</th>
<th style="">コア数/スレッド数</th>
<th style="">TDP</th>
</tr>
</thead>
<tbody>
<tr>
<td class="model">Intel® Core™ i9-10885H</td>
<td class="result">2.4 GHz</td>
<td class="result">5.3 GHz</td>
<td class="result">8/16</td>
<td class="result">45 W</td>
</tr>
</tbody>
</table>
CSS
body {
background-color: black;
color: white;
font-size: 32px;
}
table {
border-spacing: 0;
}
th, td {
line-height: 2.5;
}
th {
border-bottom: solid 4px white;
text-align: left;
}
td {
border-bottom: solid 2px white;
}
.model {
text-align: left;
}
.result {
text-align: left;
}