Vlastnost grid-template-columns

Vlastnost grid-template-columns určuje počet sloupků.

1
2
3
4

<!DOCTYPE html>
<html>
<head>
<style>
.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 0.5em;
  background-color: #f4f4f4;
  padding: 0.25em;
}

.grid-container > div {
  background-color: rgba(230, 230, 230, 0.8);
  text-align: center;
  padding: 0.5em;
  font-size: 1.2em;
}
</style>
</head>
<body>

<h2>Vlastnost grid-template-columns </h2>

<p>Vlastnost <em>grid-template-columns</em> určuje počet sloupků.</p>

<div class="grid-container">
  <div>1</div>
  <div>2</div>
  <div>3</div>  
  <div>4</div>

</div>

</body>
</html>