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