HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ outline: 2px solid black; outline-offset: 1px; margin-bottom: 15px; } </style> </head> <body> <h1>CSS outline-offset Property</h1> <div> This is div container. </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("div")[0]; function myFunction(){ x.style.outlineOffset = "5px"; } </script> <p><strong>Note</strong>: Click on the button to change the 'outline-offset' from 1px to 5px.</p> </body> </html>
OUTPUT
×

Save as Private