运行 ❯
获取您
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <style> #myDIV { border: 1px solid black; width: 300px; height: 150px; background: url('smiley.gif') no-repeat; } </style> <body> <h1>HTML Style Object</h1> <h2>The backgroundRepeat Property</h2> <p>Click the "Try it" button to set the background-repeat property of the DIV element to "repeat-x":</p> <button onclick="myFunction()">Try it</button> <div id="myDIV"> <h1>Hello</h1> </div> <script> function myFunction() { document.getElementById("myDIV").style.backgroundRepeat = "repeat-x"; } </script> </body> </html>