JSFiddle - React, Tailwind, and code Playground
HTML
<table class="price-table">
<tr>
<th></th>
<th><span>База</span><br>1,99 USD</th>
<th><span>Стандарт</span><br>3,99 USD</th>
<th><span>Анлим</span><br>9,99 USD</th>
</tr>
<tr>
<td>Розовый фильтр</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Смайлики</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Комментарии</td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
CSS
.price-table {
border-collapse: collapse;
}
.price-table th {
width: 237px;
height: 98px;
text-transform: uppercase;
color: #fff;
border: 2px solid #283645;
border-right: 2px solid #fff;
background-color: #283645;
font-size: 24px;
font-weight: 300;
line-height: 30px;
}
.price-table th span {
font-size: 18px;
font-weight: 700;
line-height: 30px;
}
.price-table th:first-child {
border: none;
background-color: transparent;
}
.price-table th:last-child {
border-right-color: #283645;
border-top-right-radius: 10px;
}
.price-table td {
width: 238px;
height: 63px;
border: 2px solid #e5e5e5;
}