Below is a screenshot that I have replicated in the code snippet. The code snippet contains a parent div with two rows mentioned:
<div class="product-all-contents">
<div class="product-contents">
</div>
<div class="product-contents">
</div>
</div>
https://i.stack.imgur.com/wN3py.png
Issue at Hand:
I am trying to achieve individual row scrolling on mobile and tablet devices. Despite attempting various CSS codes, the desired scroll effect is not working as expected. Should I also set a min-width property to enable scrolling of rows on mobile and tablet devices?
@media only screen and (max-width: 767px)
{
.product-all-contents
{
overflow-x: auto;
}
}