3-21

一片叶
一片叶原创
2018年03月22日 13:09:03580浏览
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>css选择器</title>
  <style>
.abc{
background: lightblue;
}
.abc>p{
color: rgb(112, 148, 77);
}
.abc p+a{
color: hotpink;
}
div:nth-of-type(3){
background: goldenrod;
}
#box2{
background: dodgerblue;
}
p:only-child{
color: white;
}
a:only-of-type{
color: rgb(216, 63, 63);
}
body{
font-size: 3rem;
}
</style>
</head>
<body>
<div class="abc">
<p>
我是abc第一段文字
<p>
我是abc中第一段文字的第一段文字
</p>
<a href="">我是abc中第一段文字中的a</a>
<a href="">我是abc中第一段文字中的第二个a</a>
</p>
<p>我是第二段文字</p>
<a href="">abcxia下的a</a>
</div>
<div id="box2">
<a href="">我是box2中的a</a>
<a href=""></a>
</div>
<div>
<p>这里什么都没有</p>
</div>
<p>
<a href="">xiaoming</a>
</p>
</body>
</html>

chrome_2018-03-22_13-09-31.png

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议