I'm using Bootstrap to display a responsive gridview table(many columns) in asp.net. The table can be very large depending on the parameters that are used to populate the dataset for the table. If a large table is displayed, users will have to scroll all the way to the bottom of the screen in order to use the horizontal scrollbar. Is there a way to make the horizontal scrollbar always visible and allow users to use the horizontal scrollbar without having to scroll all the way to the bottom of the page?
Below is a sample, I didn't include all of the columns.
<div id="divEmployee" style="overflow: scroll;" runat="server">
<div class="table-responsive;text-center; ">
<asp:GridView ID="EmployeeGrid" runat="server" Width="100%" AutoGenerateColumns="False"
UseAccessibleHeader="true" CssClass="table table-striped table-hover table-condensed "
AllowSorting="True" >
<Columns>
<asp:BoundField DataField="FirstName" HeaderText="First Name" SortExpression="FirstName" />
<asp:BoundField DataField="LastName" HeaderText="Last Name" SortExpression="LastName" />
<asp:BoundField DataField="Address" HeaderText="Address" SortExpression="Address" />
<asp:BoundField DataField="City" HeaderText="City" SortExpression="City" />
<asp:BoundField DataField="State" HeaderText="State" SortExpression="State" />
</Columns>`enter code here`
</asp:GridView>
</div>
</div>