<div class="table-wrapper paper border shadow shadow-large shadow-hover">
<table>
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Position</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Bob Dylan</td>
<td>Musician</td>
<td>California, USA</td>
</tr>
<tr>
<td>2</td>
<td>Eric Clapton</td>
<td>Musician</td>
<td>Ohio, USA</td>
</tr>
<tr>
<td>3</td>
<td>Daniel Kahneman</td>
<td>Psychologist</td>
<td>California, USA</td>
</tr>
</tbody>
</table>
</div>
@import url("https://unpkg.com/papercss@1.9.2/dist/paper.css") layer(csspaper);
.table-wrapper {
max-height: 200px;
overflow: auto;
}
.table-wrapper:has(tr:nth-child(3)) {
max-height: none;
}
/* .table-wrapper:has(tr:nth-child(3):last-child) {
outline: 2px dashed red;
outline-offset: 10px;
} */
/* Demo style */
body {
display: grid;
place-items: center;
min-height: 100vh;
background-color: #f6eee3;
background-size: 20px 20px;
background-image: repeating-linear-gradient(0deg, #e5decf, #e5decf 1px, #f6eee3 1px, #f6eee3);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.