Skip to content

Completely hide parent container's horizontal scrollbar

To completely hide the horizontal scrollbar, add the following CSS to completely hide the horizontal scrollbar of the parent container. For instance, when the parent container of the grid id is "mydiv".

<style>
#mydiv {
    overflow-x: hidden;
}
</style>


Feedback and Knowledge Base