The border-right-width property changes the width of right border. You can try to run the following code to implement border-right-width property
Example
<html> <head> </head> <body> <p style = "border-right-width:6px;border-style:solid;"> This is demo content. </p> </body> </html>