How can I make it that this chart won't get cut off on a smaller screen and a horizontal scroll bar will show up? Read-only link Thank you
Didn’t look at your code but should be able to set the div container the chart sits in to overflow to get the scrollbars
But a better way to do this rather than horizontal scroll is to use a tab element
overflow: auto or overflow: scroll shows scrollbars (depending on content size and browser). overflow: visible (the default) does not create scrollbars — it lets content spill out. overflow: hidden hides overflow entirely.
Sara M. so you'll likely need a new div to wrap your services_pricing_content div. You'll want to make these style changes on iPad down. Let's call this services_pricing_wrapper - this new div will need to have width: 100%; and overflow: auto; Then for services_pricing_content - you'll want that to have width: 100% and min-width: 1200px;. Then everything should look how it should.
nope - never seen a default scrollbar on the top before. You'd have to explore a custom scroll bar mechanism entirely to do that - if its possible.
I hear. Thanks. I'm also not liking how it gets cut off on the side with some padding there, but I guess there's probably no way around that.
now the issue is that the scroll bar on Safari only shows up when you're actually scrolling.
any ideas?
Sara M. overflow: scroll;: This property will display both horizontal and vertical scrollbars, regardless of whether the content exceeds the element's dimensions. overflow-y: scroll;: This property will display only the vertical scrollbar, even if the content doesn't require it. overflow-x: scroll;: This property will display only the horizontal scrollbar, even if the content doesn't require it.

