<table>
<thead class="contents">
<tr class="contents">
<td></td>
<td>A</td>
<td>B</td>
<td>C</td>
</tr>
</thead>
<tbody class="contents">
<tr class="contents">
<td>Projects</td>
<td>1 Project</td>
<td>Up to 10 Projects</td>
<td>Unlimited Projects</td>
</tr>
<tr class="contents">
<td>Storage Space</td>
<td>1GB Storage</td>
<td>10GB Storage</td>
<td>100GB Storage</td>
</tr>
<tr class="contents">
<td>Support</td>
<td>Email Support</td>
<td>Real time Support</td>
<td>Priority Real time Support</td>
</tr>
</tbody>
</table>
.contents {
display: contents;
}
table {
display: grid;
grid-template-columns: repeat(4, 160px);
grid-template-rows: repeat(4, 70px);
}
/* BEGIN COSMETICS */
html {
padding: 20px;
font-family: Trebuchet MS, sans-serif;
background: #FAFAFA;
}
body {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
}
table {
grid-gap: 0 16px;
}
thead td {
font-size: 20px;
text-decoration: underline;
font-weight: 500;
}
td {
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
font-size: 14px;
text-align: center;
}
tr td:first-of-type {
font-weight: 500;
justify-content: flex-start;
color: #71717A;
}
/* END COSMETICS */
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.