I followed some guides to make a div to center both vertically and horizontally, but it doesn't work.
<div class="c">center</div>
html, body {
    height: 100%;
}
.c {
    background: grey;
    width: 50%;
    height: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
 
     
     
     
     
    