The border-width property sets the width of an element's four borders. This property can have from one to four values.Examples:Note: Always declare the border-style property before the border-width property. An element must have borders before you can set the width.
border-width: medium|thin|thick|length|initial|inherit;
p { border-style: solid; border-width: 15px; }