Use CSS selectors for ID and Class attributes
masterYou can use shorthand CSS-style selectors directly in the element vector to specify id and class attributes:
- Use
#to specify anid. - Use
.to specify one or moreclassnames. - These can be combined (e.g.,
#id.class1.class2).