'How to disable Horizontal scroll on a website NavBar with Bootstrap
Solution 1:[1]
Disable scrolling on html/body and add it to your table like below
table {
display: block;
width: 100%; /* Needs to be adjusted accordingly */
overflow-x: auto;
}
Solution 2:[2]
Use tag in css overflow-x: hidden;
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Nitin Kumar |
| Solution 2 | Asad Ali |


