I'm working on creating a dynamic page with a tree-like structure that easily exceeds the width of the browser window. My goal is to enable horizontal scrolling for the entire page using the browser's scrollbar, without needing a separate scrollbar specifically for the tree. The relevant CSS properties are as follows:
body{
overflow-x:auto;
background-color: #ffffff;}
#campaign {
width: 100%;
overflow: auto;
white-space: nowrap;}
Here is a screenshot showing my current output.
Notice that the bottom horizontal scrollbar disappears when you scroll vertically up.
Thank you.