(PCC)::[How-to-use-All-the-border-properties-in-one-declaration]::[css]
<!DOCTYPE html> <html> <head> <style> p { border: 5px solid red; } </style> </head> <body> <h2>The border Property</h2> <p>This property is a shorthand property for border-width, border-style, and border-color.</p> </body> </html>
This property is a shorthand property for border-width, border-style, and border-color.