运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #container { width: 50%; aspect-ratio: 2/1; border: 1px solid black; display: grid; grid-template-columns: 1fr 1fr; justify-items: end; } #container > div { border: 1px solid black; } .blue { background-color: lightblue; width: 50%; } .red { background-color: coral; width: 40%; } .green { background-color: lightgreen; width: 60%; } </style> </head> <body> <h2>justify-items: end</h2> <div id="container"> <div class="red">RED</div> <div class="blue">BLUE</div> <div class="green">GREEN</div> <div class="red">RED</div> </div> </body> </html>