CSS Last Child

  • Post category:CSS

Get the code of CSS Last Child and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<p>Paragraph 1</p>
<p>Paragraph 1</p>
<p>Paragraph 1</p>
<p>Paragraph 1</p>
<p>Last Child</p>
p {
  background: green;
  color: white;
}
p:nth-last-of-type(1) {
  background: red;
}