CSS border
➔ Border property used to set the border on an element.
➔ Here are some common border attributes:
border-widthborder-styleborder-colorborder-top-styleborder-right-styleborder-bottom-styleborder-left-style
Click on the "Try it Now" button to see how it works.
Example
.p1 {
border-width: 1px;
border-style: solid;
border-color: black;
border-radius: 5px;
}
Click on the "Try it Now" button to see how it works.