Monday, September 17, 2018

Make table scroll css html

First, make a display: block of your table

then, set overflow-x: to auto.
table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
Nice and clean. No superfluous formatting.

No comments:
Write comments