1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<!doctype html> <html> <style> div::first-line { --bar: left; } span { animation: var(--bar) 5s infinite alternate; } @keyframes left { from {left: 0;} to {left: 30px;} } </style> <div> <span>Crash</span> </div> </html>