serenity/Base/res/html/misc/last-of-type.html
2021-04-06 13:06:42 +02:00

13 lines
335 B
HTML

<style>
article :last-of-type {
background-color: orange;
}
</style>
<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>