.grid{
display:grid;
height:100vh;
grid-template-columns:20% 60% 20%;
grid-column-gap:14px;
}
.grid div{
background:orange;
}
<div class='grid'>
<div class='col'></div>
<div class='col'></div>
<div class='col'></div>
</div>
How to get the above columns gap (14px) without the bottom scrollbar, i.e. without resizing the grid?