a:visited { color: 333;}
vs a:visited { color:#333;}
There are four ways to declare color in css
- As a standard color name
P {color: green}
- As a hexadecimal value
P {color: #333333}
// note the hash - As an RGB percentage
P {color: rgb(70%, 0%, 30%)}
- As a decimal value from 0 to 255
P {color: rgb(170, 0, 100)}
none of them are just numeric, in lines 11-22