Fix First Column of a Bootstrap Table

Just add position:sticky to th & td first-child. th:first-child, td:first-child { position:sticky; left:0px; background-color:grey; } <link href=”https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css” rel=”stylesheet”/> <table class=”table”> <tr> <th>TIME</th> <th>Company</th> <th>Company</th> <th>Company</th> <th>Company</th> <th>Company</th> <th>Company</th> <th>Contact</th> <th>Country</th> </tr> <tr> <td>11:40 </td> <td>Maria Anders</td> <td>Alfreds Futterkiste</td> <td>Maria Anders</td> <td>Alfreds Futterkiste</td> <td>Maria Anders</td> <td>Alfreds Futterkiste</td> <td>Maria Anders</td> <td>Germany</td> </tr> <tr> <td>11:40 </td> <td>Maria Anders</td> … Read more