运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #parentDIV { position: relative; height: 250px; width: 60%; } #myDIV { position: absolute; background-color: lightblue; inset-block: 10px 50px; } div { border: solid black 1px; } </style> </head> <body> <h1>The inset-block Property</h1> <div id="parentDIV"> <div id="myDIV"> <p>This DIV has a size defined by the distance of 10 pixels to the parent DIV element from start of block, and 50 pixels distance to parent from end of block.</p> </div> </div> </body> </html>