运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <head> <style> body { background-color: #E7E9EB; } #myDIV { height: 300px; position: relative; background-color: #FFFFFF; } .bluediv { position: absolute; height: 100%; background-color: lightblue; inset-inline: 30px 90px; } </style> </head> <body> <h1>The inset-inline property</h1> <div id="myDIV"> <div class="bluediv"> See this blue div element with different inset-inline values. </div> </div> </body> </html>