1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<!DOCTYPE html> <html> <style> @keyframes anim { from { content: 'content'; } to { content: ''; } } #target::marker { content: 'initial'; animation: anim 100s paused; } #target { display: list-item; margin-left: 200px; } </style> <div id='target'></div> </html>