Web速查-索引

Alt text

定义

交集选择器,找到指定标签间的共有部分

语法

element.class || element#id
{
CSS 样式;
}

实例

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