运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #myDiv { border: 1px solid #FF0000; position: relative; } </style> </head> <body> <div id="myDiv">This is a div.</div> <br> <button type="button" onclick="myFunction()">Set top position of div to -10 px</button> <script> function myFunction() { document.getElementById("myDiv").style.top = "-10px"; } </script> </body> </html>