New! My 44-page ebook "CSS in 44 minutes" is out! 😃
#border-left-color
Like border-color
, but for the left border only.
border-left-color: transparent;
Applies a transparent color to the left border. The left border will still take up the space defined by the border-width
value.
border-left-color: red;
You can use one of the 140+ color names.
border-left-color: #05ffb0;
You can use hexadecimal color codes, rgb()
, rgba()
, hsl()
, hsla()
...