Web速查-索引

.class

定义

类选择器允许以一种独立于文档元素的方式来指定样式。

注意:class属性可以在HTML文档中出现多次。只有适当地标记文档后,才能使用这些选择器,该选择器可以单独使用,也可以与其他元素结合使用。

语法

.class
{
CSS 样式
}

实例

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
.important {color:green;}
</style>
</head>
<body>
<h1 class="important">Welcome to FishC.com</h1>
<p class="important">Welcome to FishC.com</p>
<p>Welcome to FishC.com</p>
<p>Welcome to FishC.com</p>
<p>Welcome to FishC.com</p>
</body>
</html>

Welcome to FishC.com

Welcome to FishC.com

Welcome to FishC.com

Welcome to FishC.com

Welcome to FishC.com

浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号

Safari Chrome FireFox IE
1.0 1.0 1.0 5.0