In CSS what is the difference between “.” and “#” when declaring a set of styles? [duplicate]
Yes, they are different… # is an id selector, used to target a single specific element with a unique id, but . is a class selector used to target multiple elements with a particular class. To put it another way: #foo {} will style the single element declared with an attribute id=”foo” .foo {} will style all elements with an attribute class=”foo” (you can have multiple classes assigned to an element too, … Read more