Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
style
>
p:last-child
{
background
:
#ff0000
;
}
<
/style
>
<
/head
>
<
body
>
<
p
>
The first paragraph.
<
/p
>
<
p
>
The second paragraph.
<
/p
>
<
p
>
The third paragraph.
<
/p
>
<
p
>
The fourth paragraph.
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <style> p:last-child { background: #ff0000; } </style> </head> <body> <p>The first paragraph.</p> <p>The second paragraph.</p> <p>The third paragraph.</p> <p>The fourth paragraph.</p> </body> </html>
Result:
Privacy Policy