Scrollable Table with Fixed Header in Bootstrap Example
Hi! This post shows you how to create scrollable table with fixed header in bootstrap. As a Back-end Developer I have to deal with databases a lot and often to display data in html table in the front-end. And with readily available bootstrap css, you can easily style tables in seconds. Bootstrap comes with several table styles like striped, bordered, condensed and even responsive which adds horizontal scrollbar to tables thus making the data easily viewable on mobile devices. When you have large dataset to show on table, then it's better to split data over multiple pages using pagination . But recently I have to go for another option which is to make bootstrap table vertically scrollable with fixed header. I looked around the net for some good solution but nothing is satisfactory. I tweaked the css a little and achieved a satisfactory result. Here I'll show you how I made bootstrap table scrollable with fixed header. Creating Bootstrap Scrollable Table with Fixed He...