I'm attempting to center the content vertically in this table using the align-middle class but it doesn't seem to be working. How can I get it to work?
tr, td, p, a {
border: 1px solid black;
}
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<table class="table table-borderless">
<tbody>
<tr>
<td class="align-middle">
<p class="font-weight-bold font-italic text-secondary">LoremIpsum:</p>
</td>
<td class="align-middle">
<a href="#">Lorem ipsum</a>,
<a href="#">dolor sit amet</a>,
<a href="#">consectetur adipiscing</a>,
<a href="#">elit ultricies</a>
</td>
</tr>
<tr>
<td class="align-middle">
<p class="font-weight-bold font-italic text-secondary">Magna morbi sociis:</p>
</td>
<td class="align-middle">
<a href="#">Link</a>,
<a href="#">Link</a>
</td>
</tr>
</tbody>
</table>