运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> <div id="myDiv" style="text-indent:3cm;"> This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. </div><br> <button type="button" onclick="myFunction()">Return text indentation of div</button> <script> function myFunction() { alert(document.getElementById("myDiv").style.textIndent); } </script> </body> </html>