Reputation: 127
I have a problem with my div elements.
<div style="width: 300px; height: 300px; overflow: scroll;">
<!-- Some stuff here -->
</div>
How can I make the elements inside it not go to next line and make the div horizontally scrollable instead?
Upvotes: 0
Views: 68
Reputation: 1272
you can use overflow-x
<div style="width: 300px; height: 300px; overflow-x: scroll;">
<img width="400" height = "300" src="https://via.placeholder.com/150">
</div>
Upvotes: 2