Question
bootstrap - white margin left & right small devices only
Is there a quick fix to ensure all containers are spanning entire width of screen edge to edge on small devices?
On phones, there is what appears to be a 5px white margin on left & right sides.
default:
.container {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
Could it be the rows causing this conflict?
The body has nothing: html, body { margin: 0; padding: 0; }
Thank you.
