Syntax error How to specify the size of the gap between rows in CSS Grid

How to specify the size of the gap between rows in CSS Grid



Use the grid-row-gap property to set the size of the gap between rows in CSS

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         .container {
            display: grid;
            grid-auto-rows: 50px;
            grid-column-gap: 30px;
            grid-row-gap: 50px;
            background-color: #95A5A6;
            padding: 10px;
         }
         .container>div {
            background-color: #F0F3F4;
            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>
Updated on: 2020-06-25T08:57:03+05:30

320 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements