I'm creating a schedule table with events and hours, so I need to fix the first column when table is horizontally scrolling. This will help users to see the hour of the event more easily. I'm using Bootstrap 4. Screenshot of the table: .
Best Regards
I'm creating a schedule table with events and hours, so I need to fix the first column when table is horizontally scrolling. This will help users to see the hour of the event more easily. I'm using Bootstrap 4. Screenshot of the table: http://prntscr.com/japkbc.
Best Regards
Share Improve this question asked Apr 27, 2018 at 7:37 user8817672user8817672 6- have you tried using DataTables? ref: datatables.net/extensions/fixedcolumns/examples – Harmando Taufik Gemilang Commented Apr 27, 2018 at 7:41
- Yes, I did. It changed all the table, made it smaller and added search bar - things that I don't need. – user8817672 Commented Apr 27, 2018 at 7:53
- Please add your code so we can help you – Ignacio Ara Commented Apr 27, 2018 at 7:57
- Use can remove search bar, set the column width with DATATABLES – Ryuk Lee Commented Apr 27, 2018 at 7:57
- @GhoSTBG please add code – Manish Singh Commented Apr 27, 2018 at 7:58
1 Answer
Reset to default 28
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
th
{
background-color:black;
color:white;
}
th:first-child, td:first-child
{
position:sticky;
left:0px;
}
td:first-child
{
background-color:grey;
}
<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>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Centro comercial Moctezuma</td>
<td>Francisco Chang</td>
<td>Mexico</td>
</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>Ernst Handel</td>
<td>Roland Mendel</td>
<td>Austria</td>
</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>Island Trading</td>
<td>Helen Bennett</td>
<td>UK</td>
</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>Laughing Bacchus Winecellars</td>
<td>Yoshi Tannamuri</td>
<td>Canada</td>
</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>Magazzini Alimentari Riuniti</td>
<td>Giovanni Rovelli</td>
<td>Italy</td>
</tr>
</table>