1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!doctype html> <style> div { color: red; transition: margin 1s ease, all 2s; } </style> <div>Should turn Green</div> <script> onload = function() { document.querySelector('div').style.color = "green"; document.body.offsetTop; } </script>