<!DOCTYPE html>
<html>
<head>
<style>
#container {
width: 50%;
aspect-ratio: 2/1;
border: 1px solid black;
display: grid;
grid-template-columns: 1fr 1fr;
direction: rtl;
}
#container > div {
border: 1px solid black;
}
.blue {
background-color: lightblue;
width: 50%;
justify-self: end;
}
.red {
background-color: coral;
width: 40%;
}
.green {
background-color: lightgreen;
width: 60%;
}
</style>
</head>
<body>
<h1>设置 justify-self 以及 direction: rtl</h1>
<p>网格项目沿行内方向在网格容器的开始处对齐。行内方向随 direction 属性值“rtl”发生变化,因此现在行内方向上的容器末端位于容器的左侧,而不是右侧。</p>
<div id="container">
<div class="red">红色</div>
<div class="blue">蓝色</div>
<div class="green">绿色</div>
<div class="red">红色</div>
</div>
</body>
</html>