<p>У цьому прикладі, Ви можете змінювати значення для властивості <strong>grid-template-rows</strong>:</p>
<p>Властивість grid-template-rows встановлює значення ширини для рядків (розділяючи їх пробілом). У цьому прикладі Ви мусите прописувати не тільки цифру, а й одиниці довжини (наприклад fr).</p>
<input type="text" class="input" id="one" value="1fr">
<input type="text" id="two" class="input" value="1fr">
<input type="text" id="three" class="input" value="1fr">
<div class="box">
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item">4</div>
<div class="item">5</div>
<div class="item">6</div>
<div class="item">7</div>
<div class="item">8</div>
<div class="item">9</div>
</div>
body {
font-family: monospace;
font-size: 16px;
line-height: 1.45;
}
.input {
margin-bottom: 36px;
font-size: 14px;
width: 75px;
}
.box {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
grid-gap: 5px;
}
.box .item {
background-color: tomato;
color: white;
font-size: 1.4em;
font-family: monospace;
padding: 16px;
text-align: center;
}
$('.input').on('change', function() {
$('.box').css('grid-template-rows', $('#one').val() + ' ' + $('#two').val() + ' ' + $('#three').val());
});
This Pen doesn't use any external CSS resources.