Despite the fact that you put container liquid, sometimes it does not make the width 100% suitable for the screen, because the browser does the default margin and filling. To make it fit on the screen, you need to do like this:
body {
padding: 0;
margin: 0;
}
If this does not work, make them important, as shown below.
body {
padding: 0 !important;
margin: 0 !important;
}
source
share