运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <head> <style> #parentDIV { width: 100%; height: 300px; margin: 10px 0; position: relative; border: solid black 1px; } #myDIV { position: absolute; width: 100%; background-color: lightblue; inset-block-end: 0; } </style> </head> <body> <h1>Change inset-block-start property with JavaScript</h1> <p>Click the "Try it" button to change the inset-block-start values of the DIV element:</p> <button onclick="myFunction()">Try it</button> <div id="parentDIV"> <div id="myDIV"> This is my DIV element. </div> </div> <script> function myFunction() { document.getElementById("myDIV").style.insetBlockStart = "100px"; } </script> </body> </html>