The issue at hand is caused by the display
property being set to table-cell
, which is added by bootstrap. To fix this, simply switch it to display:block
. See the updated code snippet below:
UPDATE: Added minor padding to eliminate the jumping effect...
.table1 td:hover {
border: 1px solid black;
padding: 11px 11px;
display: block;
}
.table2 td:hover {
border: 1px double black;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet" />
<div class="container">
<table class="table1 table table-bordered">
<thead>
<tr>
<th>#</th>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Donald</td>
<td>Duck</td>
<td><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="16727978777a72567263757d3875797b">[email protected]</a></td>
</tr>
<tr>
<td>2</td>
<td>Daisy</td>
<td>Duck</td>
<td><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="fb9f9a928882bb9f8e9890d5989496">[email protected]</a></td>
</tr>
<tr>
<td>3</td>
<td>Scrooge</td>
<td>McDuck</td>
<td><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="483b2b3a27272f2d08252b2c3d2b23662b2725">[email protected]</a></td>
</tr>
<tr>
<td>4</td>
<td>Gladstone</td>
<td>Gander</td>
<td><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="bbdcd7dadfc8cfd4d5defbdcdad5dfdec995d8d4d6">[email protected]</a></td>
</tr>
</tbody>
</table>
</div>
<div class="container">
<table class="table2 table table-bordered">
<thead>
<tr>
<th>#</th>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Donald</td>
<td>Duck</td>
<td><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="debab1b0bfb2ba9ebaabbdb5f0bdb1b3">[email protected]</a></td>
</tr>
<tr>
<td>2</td>
<td>Daisy</td>
<td>Duck</td>
<td><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="7511141c060c351100161e5b161a18">[email protected]</a></td>
</tr>
<tr>
<td>3</td>
<td>Scrooge</td>
<td>McDuck</td>
<td><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="a8dbcbdac7c7cfcde8c5cbccddcbc386cbc7c5">[email protected]</a></td>
</tr>
<tr>
<td>4</td>
<td>Gladstone</td>
<td>Gander</td>
<td><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="80e7ece1e4f3f4efeee5c0e7e1eee4e5f2aee3efed">[email protected]</a></td>
</tr>
</tbody>
</table>
</div>