I'm not sure where I saw this before, but I'm sure there is a way to do horizontal scrolling.
Say, for example, you have several DIVs, this is ff: structure:
<div class="container"> <div>Content</div> <div>Content</div> <div>Content</div> <div>Content</div> <div>Content</div> </div>
I need a way so that it is aligned horizontally and not interrupted until the next line. And instead of vertical scrolling there will be horizontal scrolling.
Usually, if I did float: left or display: inline, after the div fills a fairly horizontal space, it will go to the next line. Is there a way to make it align in a straight horizontal line and do an h-scroll for this?
html css
Ducdigital
source share