Newer
Older
minerva / Base / res / html / misc / first-child.html
@minerva minerva on 13 Jul 354 bytes Initial commit
<html>
<head>
<title>:first-child test</title>
<style>
p:first-child {
  color: lime;
  background-color: black;
  padding: 5px;
}
</style>
</head>
<body>
<div>
  <p>This text is selected!</p>
  <p>This text isn't selected.</p>
</div>

<div>
  <h2>This text isn't selected: it's not a `p`.</h2>
  <p>This text isn't selected.</p>
</div>

</body>
</html>