关于选择器:nth-last-child的运用
nth-last-child(1)选中的不应该是最后一个<p>555555<p>吗?求解
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
.album > p:first-child:nth-last-child(1){border: 10px solid #f60;}
</style>
</head>
<body>
<div class='album'>
<p>111111111</p>
</div>
<div class='album'>
<p>11111111</p>
<p>22222222</p>
</div><div class='album'>
<p>11111111</p>
<p>22222222</p>
</div>
<div class='album'>
<p>11111111</p>
<p>22222222</p>
<p>33333333</p>
</div>
<div class='album'>
<p>11111111</p>
<p>22222222</p>
<p>33333333</p>
<p>44444444</p>
</div>
<div class='album'>
<p>11111111</p>
<p>22222222</p>
<p>33333333</p>
<p>44444444</p>
<p>55555555</p>
</div>
</body>
</html>