המאפיין grid-template-columns
מגדיר את מספר העמודות בתבנית ה-Grid ואת גודלם.
repeat(count, size)
- חוזר על גודל העמודה מספר פעמים.auto
- גודל אוטומטי לעמודות.fr
- יחידת מידה המייצגת חלק יחסי מהשטח הזמין.להלן דוגמה לשימוש במאפיין grid-template-columns
:
<style>
.container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}
.item {
background-color: lightblue;
padding: 20px;
text-align: center;
}
</style>
<div class="container">
<div class="item">אלמנט 1</div>
<div class="item">אלמנט 2</div>
<div class="item">אלמנט 3</div>
</div>
רק רגע