I am developing a Wordpress theme and notice that the entire fragment of the page is slightly shifted. I used the inspector in Chrome to find the problem, and found the following styles:
<style type="text/css" media="screen"> html { margin-top: 32px !important; } * html body { margin-top: 32px !important; } @media screen and ( max-width: 782px ) { html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } } </style>
If I delete this in the inspector, the body of the page will return to the top. But here is the strange thing. I tried deleting the whole stylesheet to see if there was a problem in css, but the problem still exists. So, I think Chrome should add these lines, but why? It works great in IE and Edge.
Edit: I tried clearing the cache cache in Crome, but no difference .. Edit: I tried adding css reset to the stylesheet, but still no difference ...
CSS (pretty dirty but working): https://codeshare.io/sr0sg

source share