blob: f49030759edc5f0084c02af13ec81bbca187db33 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE html>
<style>
@keyframes anim {
0% { background-color: black; }
100% { background-color: yellow; }
}
</style>
<script>
document.styleSheets[0].cssRules[0].cssRules[0].style.setProperty('background-color', 'red', 'important');
</script>
|