Programming Code Center(PCC)
[CSS]

(PCC)::[How-to-use-All-the-border-properties-in-one-declaration]::[css]

File Name : index.html

<!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>

Output :

The border Property

This property is a shorthand property for border-width, border-style, and border-color.