#css #css class selector A class selector selects elements that have a particular value as the value of their class attribute. Prefix the attribute value with . to indicate that it is a class. For example, the following will make elements with abc as the value of the class attribute red. .abc { color: red; } If nothing precedes the class selector If nothing precedes the class selector, selects a..