<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css选择器优先级顺序</title>
</head>
<style>
div{
width: 100px;
height: 100px;
margin: calc(25% - 100px) auto;
}
#bgId{
background: red;
}
.bgClass{
background: green;
}
[title]{
background: pink;
}
div:first-child{
background: gold;
}
div{
background: black;
}
div:before{
display: block;
content: "";
width: 50px;
height: 50px;
background: fuchsia;
}
*{
background: antiquewhite;
}
</style>
<body>
<div id="bgId" class="bgClass" style="background: blue" title="jessica"></div>
</body>
</html>
