I made a page with Bootstrap 4 and there's a white space on the right.
I have everything except the nav bar in a div with class col
. I didn't put the row
s and col
s inside a container
div because Bootstrap documentation suggests going without it for an edge-to-edge design. (I tried putting them inside a container-fluid
div and the gap was still there).
Since col
adds 15px on the right and left, I also tried the following, and it didn't remove the gap:
.col {
padding-right: 0 !important;
padding-left: 0 !important;
}