The border-width property changes the color of the right border.
Example
You can try to run the following code to implement the border-width property:
<html> <head> </head> <body> <p style = "border-width:3px; border-style:solid;"> Example showing border width and style </p> </body> </html>