top of page

Grid-auto-columns Property


The grid-auto-columns property sets a size for the columns in a grid container.


This property affects only columns with the size not set.


auto

Default value. The size of the columns is determined by the size of the container

fit-content()

max-content

Sets the size of each column depending on the largest item in the column

min-content

Sets the size of each column depending on the smallest item in the column

minmax(min.max)

Sets a size range greater than or equal to min and less than or equal to max

length

Sets the size of the columns, by using a legal length value.

%

Sets the size of the columns, by using a percent value



Code:

<!DOCTYPE html>
<html>
<head>
<style>
.item1 { grid-area: 1 / 1 / 2 / 2; }
.item2 { grid-area: 1 / 2 / 2 / 3; }
.item3 { grid-area: 1 / 3 / 2 / 4; }
.item4 { grid-area: 2 / 1 / 3 / 2; }
.item5 { grid-area: 2 / 2 / 3 / 3; }
.item6 { grid-area: 2 / 3 / 3 / 4; }

.grid-container {
  display: grid;
  grid-auto-columns: 100px;
  grid-gap: 10px;
  background-color: pink;
  padding: 10px;
}

.grid-container > div {
  background-color: white ;
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}
</style>
</head>
<body>

<h1>The grid-auto-columns</h1>
<p>Use the <em>grid-auto-columns</em> property to set a default size (width) for all columns.</p>


<div class="grid-container">
  <div class="item1">1</div>
  <div class="item2">2</div>
  <div class="item3">3</div>  
  <div class="item4">4</div>
  <div class="item5">5</div>
  <div class="item6">6</div>
</div>


</body>
</html>

Output:





The Tech Platform

0 comments
bottom of page