Skip to main content

Command Palette

Search for a command to run...

currentColor in CSS

Published
currentColor in CSS
A

Hi there ๐Ÿ‘‹, I am Anil Verma I am a passionate Full Stack Web Developer who is fascinated by complex engineering problems.

currentColor acts like a variable for the current value of the color property on the element.

//Html

<div>Hello from currentColor</div>

//css

div {    color: blue;    
  border: 5px solid currentColor;    
 box-shadow: 0 0 5px solid currentColor; }

Happy Codingโ€ฆ ๐Ÿ‘๐Ÿ‘