In order to allow for horizontal scrolling of all contained columns, I created a row using the row
class.
To implement this feature, I followed advice from a contributor on Stack Overflow. You can view their answer by following this link: Bootstrap 4 horizontal scroller div
Despite successfully creating the horizontal scroll functionality, I encountered an issue where elements within the container were being clipped. This problem was especially noticeable in certain OS-Browser combinations, such as MacOS and Chrome, where the scrollbar remained hidden until hovered over by the mouse. One user even had difficulty locating the next clipped column element due to this behavior.
I am seeking guidance on how to ensure that elements beyond the container width are not clipped, thereby providing users with a clear indication that additional content is present and requires scrolling.
Edit:
The relevant code snippet can be found in this answer, and has also been shared on codepen.
Edit 2:
It is important to note that I am looking for a solution that prevents the container from shifting during scrolling.