JSFiddle - React, Tailwind, and code Playground

HTML

<table class="table_name">
<tr>
<td><a href="/seite/">Keyword 1</a></td>
<td><a href="/seite2/">Keyword 2</a></td>
</tr>
</table>

CSS

.table_name {
width:100%;
align:center;
border:2px solid #dee3e6;
}


.table_name td a {
text-decoration: none;
background-color:transparent;
}

.table_name td {
border:2px solid #dee3e6;
text-align: center;
}


.table_name td:hover {
text-decoration : none;
background-color : #dee3e6;
}