Latest web development tutorials

CSS .class selector

CSS selectors complete CSS selectors complete reference manual

Examples

Select and style all elements with class = "intro":

.intro
{
background-color: yellow;
}

try it"

Definition and Usage

The.class selector is a style of all elements of the specified class.


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browserssupport.Class selector


Examples

More examples


Examples

Style all <p> elements with class = "hometown":

p.hometown
{
background-color: yellow;
}

try it"


CSS selectors complete CSS selectors complete reference manual