<!-- Början av en Bootstrap-tabell med striped och  hover-effekt-->
<table class="table table-striped table-hover">    
    <thead>
    <tr>        
        <th>Firstname</th>        
        <th>Lastname</th>        
        <th>Email</th>
    </tr>
    </thead>   
    <tbody>   
    <tr>        
        <td>John</td>        
        <td>Doe</td>       
        <td>john@example.com</td>
    </tr>    
    <tr>        
        <td>Mary</td>        
        <td>Moe</td>       
        <td>mary@example.com</td>
    </tr>    
    </tbody>
</table>

Tabell exempel

A basic Bootstrap 5 table has a light padding and horizontal dividers. The .table class adds basic styling to a table

Firstname Lastname Email
John Doe john@example.com
Mary Moe mary@example.com