How to add a scrollbar to a table in html

5
1.4K followers

Adding a scrollbar to a table is useful, if you want to add additional rows to the table that don't fit into the normal screen or when the table would be cut in half on a mobile device such as a smartphone with a smaller screen.

I run into this issue even though my wordpress theme is responsive.

Here is a simple html code that you can add to the html table code which makes your table scrollable:

Before the table you add into the html text field:

<div style="overflow-x: auto;">

After the table you add:

</div>

This is an example:

This would be the code for the above table with the scrollbar:

<div style="overflow-x: auto;">
<table style="width: 1000px;">
<tbody>
<tr>
<td style="width: 120px;">table row 1</td>
<td style="width: 120px;">table row 2</td>
<td style="width: 120px;">table row 3</td>
<td style="width: 120px;">table row 4</td>
<td style="width: 120px;">table row 5</td>
<td style="width: 120px;">table row 6</td>
</tr>
<tr>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
</tr>
<tr>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
<td style="width: 120px;"></td>
</tr>
</tbody>
</table>
</div>

I hope this may help you.

Sibylle

Login
Create Your Free Wealthy Affiliate Account Today!
icon
4-Steps to Success Class
icon
One Profit Ready Website
icon
Market Research & Analysis Tools
icon
Millionaire Mentorship
icon
Core “Business Start Up” Training

Recent Comments

9

That is useful tip. thank you.

You are welcome:-)

Great backend advice!

Thanks:-)

I will keep this in mind - not ready to try HTML just yet. Thanks for sharing!

Blessings,
Debby

My pleasure, hope it helps:-)
Blessings to you as well.
Sibylle

Thanks!

That is very helpful Sibylle thank you very much for sharing.

My pleasure, hope it may help at some point.
Sibylle

See more comments

Login
Create Your Free Wealthy Affiliate Account Today!
icon
4-Steps to Success Class
icon
One Profit Ready Website
icon
Market Research & Analysis Tools
icon
Millionaire Mentorship
icon
Core “Business Start Up” Training