JSFiddle - React, Tailwind, and code Playground

HTML

<table id="mytable">
     <thead>
        <tr>
            <th><span>Playlist</span></th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td> <span>
            LINK 1
            </span>

            </td>
        </tr>
        <tr>
            <td> <span>
            LINK 2
            </span>

            </td>
        </tr>
        <tr>
            <td> <span>
            LINK 3
            </span>

            </td>
        </tr>
        <tr>
            <td> <span>
            LINK 4
            </span>

            </td>
        </tr>
        <tr>
            <td> <span>
            LINK 5
            </span>

            </td>
        </tr>
        <tr>
            <td> <span>
            LINK 6
            </span>

            </td>
        </tr>
        <tr>
            <td> <span>
            LINK 7
            </span>

            </td>
            <td> <span>
            10
            </span>

            </td>
            <td> <span>
            20
            </span>

            </td>
        </tr>
    </tbody>
</table>

CSS

table#mytable {
    width:100%;
    border-collapse:separate;
    background:crimson;
    border-radius: 15px;
}
tbody {
    overflow: auto;
    height: 100px;
    float: left;
    width: 100%;
}
td {
    text-align:center;
    background:gray;
    border-bottom:5px solid black;
    border-radius: 15px;
}
th {
    font-weight:bold;
    text-align:center;
    background:crimson;
    border-bottom:5px solid black;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    float: left;
    width: 100%;
}
tr {
    width: 100%;
    display: table;
}