I was making a webpage with a spiderweb style design, meaning content would move out and to the left and right as the user browsed.
I want the user to be able to scroll to the left and to the right as they please.
However, I noticed that it's impossible to scroll to the left while using direction:ltr. To fix this, I tried using direction:rtl on html and direction:ltr on the body. However, when I do this, it becomes unable to scroll to the right. There is the option of putting a margin-left: var(--left-content-width,0) modifier on html, but this sacrifices internet explorer 11 compatability, and makes it much harder to keep track of all the content on the left of the viewport. Is there an easy way to scroll left and right (preferably using just css, but javascript is not out of the question), or are we doomed to constant margin updates forever?