Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS outline shorthand property</title> <style> p { color: black; outline: 5px solid; } </style> </head> <body> <p>The outline color of this paragraph is same as the text color.</p> </body> </html>