我正在尝试使用在容器 div 中动态加载的内容制作横向滚动布局。body div 中的子 div 向左浮动,可以是任意宽度。
<div id="container" style="overflow-y:hidden, overflow-x:scroll">
<div style="float: left">Lots of images and text</div>
<div style="float: left">More images and text</div>
<div style="float: left">Even more</div>
</div>
我基本上需要使这个小提琴工作,以便内部 div 并排,从左到右滚动,并且可以有任意数量。容器 div 也可以调整大小;]
是否可以仅使用 css 来执行此操作?我必须使用javascript吗?