<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>交集选择器</title>
<style>
/*
一、交集选择器:选中满足多个选择器需求的元素。
1.语法格式:
选择器1选择器2。。。n{
——
}
2.注意:
选择器之间不能有任何的符号,必须紧密的连接在一起。
若交集选择器中有标签选择器,标签选择器必须在首位
*/
.d1{
color: red;
}
p.d1{
font-size: 50px;
}
</style>
</head>
<body>
<div class="d1">我是div</div>
<div class="d1">我是div</div>
<p class="d1">我是p</p>
</body>
</html>
版权属于:
yu
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
评论 (0)