Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Omitting border-color Property</title> <style> p { color: red; background: yellow; border: 5px solid; padding: 20px; margin: 20px; } </style> </head> <body> <p>The border color of this paragraph is same as the text color.</p> </body> </html>