執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { height: 90px; width: 40px; background-color: red; translate: 100px 20px; } </style> </head> <body> <h3>Translate property</h3> <div></div> <p>Moves red box 100px right, and 20px down.</p> <p>Try to change y-value to -30px and see what happens.</p> </body> </html>