<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>结构性伪类选择器—target</title>
<style type="text/css">
#brand:target p {
background: orange;
color: #fff;
width:500px;
height:500px;
background:url('20180319102712.png');
}
#aa:target p {
background: orange;
color: #fff;
width:500px;
height:500px;
background:url('20171017095507.png');
}
</style>
</head>
<body>
<div class="menuSection" id="brand">
<h2><a href="#brand">Brand</a></h2>
<p>content for Brand</p>
</div>
<div class="menuSection" id="aa">
<h2><a href="#aa">Brand</a></h2>
<p>aaaaaaaaaaaaaaaa</p>
</div>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>结构性伪类选择器—target</title>
<style type="text/css">
#brand:target p {
background: orange;
color: #fff;
width:500px;
height:500px;
background:url('20180319102712.png');
}
#aa:target p {
background: orange;
color: #fff;
width:500px;
height:500px;
background:url('20171017095507.png');
}
</style>
</head>
<body>
<div class="menuSection" id="brand">
<h2><a href="#brand">Brand</a></h2>
<p>content for Brand</p>
</div>
<div class="menuSection" id="aa">
<h2><a href="#aa">Brand</a></h2>
<p>aaaaaaaaaaaaaaaa</p>
</div>
</body>
</html>