Define the number of columns in CSS Grid Layout


Use the grid-template-columns property to define the number of columns in CSS Grid Layout.

You can try to run the following code to set a number of columns. Here, 3 column grid is set:

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         .container {
            display: grid;
            background-color: yellow;
            grid-template-columns: auto auto auto;
            padding: 20px;
            grid-gap: 20px;
         }
         .container > div {
            background-color: blue;
            border: 2px solid gray;
            padding: 35px;
            font-size: 30px;
            text-align: center;
         }
      </style>
   </head>
   <body>
      <h1>Game Board</h1>
      <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: 24-Jun-2020

847 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements