caret
caret
in CSS is a shorthand property that combines the caret-color
and caret-shape
properties into a single declaration. So, we get to write this:
.element {
caret: #ff7a18 underscore;
}
…which is akin to writing this:
.element {
caret-color: #ff7a18;
…