Remove margin from html and body
This commit is contained in:
parent
228ed191ee
commit
16e4d413ee
1 changed files with 4 additions and 1 deletions
|
@ -1,8 +1,11 @@
|
||||||
html {
|
html {
|
||||||
width: 400px;
|
width: 400px;
|
||||||
height: 600px;
|
height: 600px;
|
||||||
margin: 0;
|
|
||||||
//Fixes scrollbar margin issue by putting it underneath the srollbar
|
//Fixes scrollbar margin issue by putting it underneath the srollbar
|
||||||
//See https://bugs.chromium.org/p/chromium/issues/detail?id=821143
|
//See https://bugs.chromium.org/p/chromium/issues/detail?id=821143
|
||||||
overflow: overlay;
|
overflow: overlay;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue