minor fixes

This commit is contained in:
Ilya Kantor 2021-06-24 23:57:58 +03:00
parent e6098157be
commit e06bc63aa0

View file

@ -469,7 +469,7 @@ Here's a more complex example, with `@keyframes`:
```html run height=80 autorun no-beautify ```html run height=80 autorun no-beautify
<h2 onclick="this.classList.toggle('animated')">click me to start / stop</h2> <h2 onclick="this.classList.toggle('animated')">click me to start / stop</h2>
<style> <style>
h1.animated { .animated {
animation: hello-goodbye 1.8s infinite; animation: hello-goodbye 1.8s infinite;
width: fit-content; width: fit-content;
} }