+ 3
That means the element has that class and can now be styled using that class selector in css.
The CSS Tab (line 69):
.selected {
background-color: #f36f48;
font-weight: bold;
color: white;
}
This gives the element a orange background color, bold font and the text color is now white (look at the table to see the result).



