Sometimes, we want to fix Bootstrap Modals keep adding padding-right to body after closed with CSS
In this article, we’ll look at how to fix Bootstrap Modals keep adding padding-right to body after closed with CSS.
How to fix Bootstrap Modals keep adding padding-right to body after closed with CSS?
To fix Bootstrap Modals keep adding padding-right to body after closed with CSS, we set padding-right
to 0.
For instance, we write
body {
padding-right: 0 !important;
}
to set padding-right
to 0 to remove right padding in body after the modal is closed.
Conclusion
To fix Bootstrap Modals keep adding padding-right to body after closed with CSS, we set padding-right
to 0.