Can anyone tell me what the difference is in the style.css HTML file between:
.(element name)
and just:
(element name)
e.g. menu and .menu
?
Can anyone tell me what the difference is in the style.css HTML file between:
.(element name)
and just:
(element name)
e.g. menu and .menu
?
The first one targets the menu
element and the second one targets an element with the class of menu
.