运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> h1::before { counter-increment: section; content: "Section " counter(section) ". "; } </style> </head> <body> <p>Click the "Try it" button to set the counter-set property of the BODY element:</p> <button onclick="myFunction()">Try it</button> <h1>HTML Tutorials</h1> <h1>JavaScript Tutorials</h1> <h1>CSS Tutorials</h1> <script> function myFunction() { document.body.style.counterSet = "section 4"; } </script> </body> </html>