I currently have a very wide data view as a plain html table and when it’s 100% or more it runs off the right hand side of the browser not allowing entire view of data.
How can I get the browser’s horizontal scrollbars to enable so the user can scroll to view entire contents (I have the width set to 100% but that didn’t do anything)?
Thx!
You need to define an area that the table will be displayed in first and then use overflow.
then in your css
Adjust the width to suit.
That should constrain your table so that it’s displayed in a scrollable area rather than go off the page.