Tutorials References Menu

The currentcolor Keyword


The currentcolor Keyword

The currentcolor keyword refers to the value of the color property of an element.

Example

The border color of the following <div> element will be blue, because the text color of the <div> element is blue:

#myDIV {
  color: blue; /* Blue text color */
  border: 10px solid currentcolor; /* Blue border color */
}
Try it Yourself »