Edit This Code:
See Result »
<!DOCTYPE html> <html> <head> <style> body { background-color: yellow; color: red; } </style> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "//hm.baidu.com/hm.js?73c27e26f610eb3c9f3feb0c75b03925"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </head> <body> <p>Click the button to display the style properties of this document.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementsByTagName("STYLE")[0]; document.getElementById("demo").innerHTML = x.innerHTML; } </script> </body> </html>
Result: