Open main menu

CDOT Wiki β

CSS GUIDE BORDER-RIGHT-COLOR

Summary

This property is used to set the color of a given elements right border.

  • Inherited: No
  • Percentages: N/A
  • Media: visual

Syntax

TARGET_ELEMENT{border-right-color: value;}

Legal Values

Values can be entered in 3 ways:

MethodRangeExample
Hexadecimal (preferred)#000000 - #ffffff#00ff00 is green
Color nameW3Schools Natural Langauge Color Namesgreen
RGB value0-255rgb(102,204,102) is green

transparent - The border is transparent.

See usage examples section for more details.

Mozilla Recommended Values

Usage Examples

table{border-right-color: #ff3366;}
table{border-right-color: rgb(255,0,0);}

Notes

When using the transparent keyword as a value the border is transparent though it may still have width.

Specification Conformance

Browser Compatibility

See Also