Edit This Code:
See Result »
<!DOCTYPE html> <html> <head> <style> #myDiv { border: 1px solid red; outline: dotted green; } </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> <div id="myDiv" style="outline-width:10px;">This is a div element.</div> <br> <button type="button" onclick="myFunction()">Return outline width</button> <script> function myFunction() { alert(document.getElementById("myDiv").style.outlineWidth); } </script> </body> </html>
Result: