I am noticing some flickering on the position of element with margin auto (child of display grid).
I've isolated the problem, please see the code below.
I am aware I can center thee element with a different approach but this one should work. I searched all over and I can't find anyone with the same problem, but I tried on a different computer and it has the same behaviour.
I expect the red box to just center in the middle of parent element and not flicker on resize
section {
display: grid;
}
div {
width: 200px;
height: 200px;
background: red;
margin: auto;
}
<section>
<div></div>
</section>