Skip to content

Instantly share code, notes, and snippets.

@BRonen
Created August 1, 2023 18:21
Show Gist options
  • Save BRonen/95fc8ff26a81796d11a22121e96b710d to your computer and use it in GitHub Desktop.
Save BRonen/95fc8ff26a81796d11a22121e96b710d to your computer and use it in GitHub Desktop.
Realtime editable css
<html>
<body>
<style contenteditable>
style { display: block; }@keyframes animat { 0% { background-color: pink; } 50% { background-color: orange; } 100% { background-color: red; } }body { animation: animat 750ms infinite alternate; }
</style>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment