运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往空间
<!DOCTYPE html> <html> <head> <style> #container { width: 60%; aspect-ratio: 3/2; border: solid black 1px; display: grid; grid-template-columns: 1fr 1fr; } #container > div { width: 60%; aspect-ratio: 2; margin: 2px; background-color: coral; } #myDiv { border: solid black 3px; place-self: end; } </style> </head> <body> <h1>The place-self Property</h1> <p>Place an individual grid item in the block and inline directions with the place-self property.</p> <div id="container"> <div></div> <div id="myDiv"></div> <div></div> <div></div> </div> </body> </html>