I'm creating a fake site for Pentel and I want to insert images of pens using a grid layout. However, the grid shifts to the left and a scroll bar appears in the bottom of the page.
Full Screen:
I want to make it so the scroll bar disappears and the grid is in the center.
HTML:
<div class="pens-images-container">
<div class="pens-images">
<img src="./images/black-energel-rtx-refillable-liquid-gel-pen.png" alt="black EnerGel RTX refillable liquid gel pen">
<img src="./images/blue-ballpoint-07-clear-barrel.png" alt="blue ballpoint 0.7 clear barell pen">
<img src="./images/EnerGel-X-retractable-gel-pen.png" alt="EnerGel-X retractable gel pen">
<img src="./images/tradio-fountaion-blue-ink-white-barrel-pen.png" alt="tradio fountain blue ink white barrel pen">
</div>
</div>
CSS:
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html, body {
height: 100%;
background-color: #f5f5dc;
}
.wrapper {
margin-left: auto;
margin-right: auto;
width: 100vw;
}
.pens-images-container {
margin-top: 2rem;
height: 100vh;
width: 100vw;
}
.pens-images {
margin: auto;
max-width: 70%;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-gap: 2em;
}
.pens-images img {
width: 400px;
height: 400px;
}

