Hover Table

Highlight rows on hover using table-hover.

Preview

Code

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>

<div class="container py-5">

<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
<th>Role</th>
</tr>
</thead>
<tbody>
<tr>
<td>Emma</td>
<td>Designer</td>
</tr>
<tr>
<td>Lucas</td>
<td>Developer</td>
</tr>
<tr>
<td>Sophia</td>
<td>Manager</td>
</tr>
</tbody>
</table>

</div>

</body>
</html>

More BS5 Tables Examples (7)