BORDER-RIGHT Property In CSS
border-right Property in CSS
border-right property Used as a shorthand property to set all the border-right properties at once.
Possible Value:
Separate values by a space in the following order (those that are not defined will use inherited or default initial values): border-right-width border-right-style border-right-color
Examplediv { border-right:2px solid green; }
div { border-right:thick double #00FF00; }