pseudo-animations-print-ref.html (230B)
1 <!DOCTYPE HTML> 2 <html> 3 <title>Static CSS animation</title> 4 <style> 5 6 p { 7 color: blue; 8 } 9 10 p::after { 11 content: "(::after)"; 12 } 13 14 p::before { 15 content: "(::before)"; 16 } 17 </style> 18 <p>blue with animation support; olive without</p>