The CSS border
properties allow you to specify the style, width, and color of an element's border.
Syntax:
p { border: bordersize borderstyle bordercolor }
The border-style
property specifies what kind of border to display.
The following values are allowed:
dotted
- Defines a dotted borderdashed
- Defines a dashed bordersolid
- Defines a solid borderdouble
- Defines a double borderand much more ...
p {
border: 5px solid red;
}