CSS中交集选择器有两种,分别是例如 p.special{} 以及p#special类似的两种
交集选择器中不能有空格,下面是测试代码
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
p{
color:green
}
p.specialone{
color:blue
}
p#specialtwo{
color:red;
}
</style>
<title>交集选择器测试</title>
</head>
<body>
<p class="specialone">交集选择器</p>