Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> article:last-of-type { background-color: #8ebf42; } </style> </head> <body> <article> <div>This "div" is first.</div> <div>This <span>nested "span" is last</span>!</div> <div>This <em>nested "em" is first</em>, but this <em>nested "em" is last</em>!</div> <b>This "b" qualifies!</b> <div>This is the final "div"!</div> </article> </body> </html>