Set the size of the gap between CSS grid columns


Use the grid-column-gap property to set the size of the gap between grid columns in CSS

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         .container {
            display: grid;
            grid-auto-rows: 50px;
            grid-column-gap: 30px;
            grid-row-gap: 20px;
            background-color: #2E86C1;
            padding: 10px;
         }
         .container>div {
            background-color: #F2D7D5;
            text-align: center;
            padding:10px 0;
            font-size: 20px;
         }
         .ele3 {
            grid-column-end: span 2;
         }
      </style>
   </head>
   <body>
      <div class = "container">
         <div class = "ele1">1</div>
         <div class = "ele2">2</div>
         <div class = "ele3">3</div>
         <div class = "ele4">4</div>
         <div class = "ele5">5</div>
         <div class = "ele6">6</div>
      </div>
   </body>
</html>

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 25-Jun-2020

83 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements