how to remove horizontal scrollbar in angular code example
Example 1: css how to remove horizontal scrollbar
html, body {
max-width: 100%;
overflow-x: hidden;
}
Example 2: hide horizontal scrollbar css
.x-scroll-disabled {
overflow-x: hidden;
}