With Auto sizing, I have noticed when I used auto-fill, Grid aligned to right. I have basic knowledge about Auto-sizing.
.wrapper-fill{
display:grid;
grid-template-columns: repeat(auto-fill, 300px);
grid-template-areas: "header header header"
"left-sidebar .. right-sidebar"
"footer footer footer";
grid-gap:10px;
}
First grid with auto-fit
and in second grid just change grid-template-columns
properties for auto-fill
See the codepen
Is there any default setting or Am I doing anything wrong?