Run ❯
zig
.
com
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <head> <style> #myDiv { border: thick solid #FF0000; } </style> </head> <body> <div id="myDiv">This is a div.</div> <br> <button type="button" onclick="myFunction()">Change style of the top border</button> <script> function myFunction() { document.getElementById("myDiv").style.borderTopStyle = "dotted"; } </script> </body> <!-- /jsref/tryit.asp?filename=tryjsref_style_bordertopstyle2 Thu, 06 Feb 2025 18:36:37 GMT --> </html>