Cascading Style Sheets justify-self property.
justify-selfプロパティは、コンテナ内の個別アイテムの横方向(主軸方向)の揃え位置を指定する際に使用します。
コンテナ内の個別アイテムの縦方向(交差軸方向)の揃え位置を指定する場合は、align-selfプロパティを使用します。
中ボックスに justify-self:center;を指定。左50px・中50px・右50px。
中ボックスに justify-self:center;を指定。左50px・中50px・右100px。
中ボックスに justify-self:center;を指定。左50px・中50px・右150px。
HTML source
<p>中ボックスに justify-self:center;を指定。左50px・中50px・右50px。</p>
<div class="sample">
<div class="sLeft" style="width:50px;">左</div>
<div class="sCenter" style="width:50px; justify-self:center;">中</div>
<div class="sRight" style="width:50px;">右</div>
</div>
<p>中ボックスに justify-self:center;を指定。左50px・中50px・右100px。</p>
<div class="sample">
<div class="sLeft" style="width:50px;">左</div>
<div class="sCenter" style="width:50px; justify-self:center;">中</div>
<div class="sRight" style="width:100px;">右</div>
</div>
<p>中ボックスに justify-self:center;を指定。左50px・中50px・右150px。</p>
<div class="sample">
<div class="sLeft" style="width:50px;">左</div>
<div class="sCenter" style="width:50px; justify-self:center;">中</div>
<div class="sRight" style="width:150px;">右</div>
</div>
CSS source
.sample {
display: grid;
grid-template-columns: auto 1fr auto;
grid-template-rows: 80px;
background-color: palegreen;
}
.sLeft {
grid-column: 1;
background-color: green;
}
.sCenter {
grid-column: 2;
background-color: orange;
}
.sRight {
grid-column: 3;
background-color: green;
}