I'm working with a div element that looks like this:
<div id="tl" style="float:right;width: 400px; height:100px; background-color:Green; overflow-x: scroll;overflow-y: hidden;">
<div id='demo' style="float:left;height:90px;"> dsadsad </div>
<div id='demo' style="float:left;height:90px;"> dsadsad </div>
</div>
The content inside the div with the id 'demo' will be copied multiple times within the tl div. I am looking to achieve horizontal scrolling for the tl div.
Any suggestions on how I can make it work?