Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <h1 id="myH1">The Element Object</h1> <h2>The style Property</h2> <p id="myP" style="border-top: 5px solid red;">The value of my top border is:</p> <p id="demo"></p> <script> let value = document.getElementById("myP").style.borderTop; document.getElementById("demo").innerHTML = value; </script> </body> </html>