To add a gap in between columns, use the grid-column-gap property.
Final Code
<style>.d1{background:LightSkyBlue;}.d2{background:LightSalmon;}.d3{background:PaleTurquoise;}.d4{background:LightPink;}.d5{background:PaleGreen;}.container{font-size:40px;min-height:300px;width:100%;background:LightGray;display:grid;grid-template-columns:1fr1fr1fr;grid-template-rows:1fr1fr1fr;/* Only change code below this line */grid-column-gap:20px;/* Only change code above this line */}</style><divclass="container"><divclass="d1">1</div><divclass="d2">2</div><divclass="d3">3</div><divclass="d4">4</div><divclass="d5">5</div></div>