Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS3 outline-offset Property</title> <style> p { margin: 20px; padding: 20px; border: 2px solid red; outline: 2px solid green; outline-offset: 10px; } </style> </head> <body> <p>The outline of this paragraph is offset from the border.</p> </body> </html>