CSS .class 选择器

实例

Select and style all elements with class="intro":
.intro
{
background-color:yellow;
}

定义和用法

The .class选择器是指定类的所有元素的样式。


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

 

所有主流浏览器都支持.class选择器


更多实例

 

实例

 

p.hometown
{
background-color:yellow;
}