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