Learn CSS Colors by Building a Set of Colored Markers - Step 82

You have to delete the following three lines:

border-left-width: 10px;
border-left-style: solid;
border-left-color: black;

and replace it with the shorthand property.

border-left: 10px solid black;
1 Like