运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #frameDiv { width: 250px; height: 150px; border: 1px solid black; } #square { width: 60px; height: 60px; background: blue; offset-position: bottom right; offset-path: ray(45deg); } </style> </head> <body> <h1>The offset-position property</h1> <div id="frameDiv"> <div id="square"></div> </div> </body> </html>