CSS: Animation
Instructions
Loading...
Your exercise will be checked with these tests:
const { test } = require('tests');
test(({ query, expect, html }) => {
const p = query(document, '.black-white');
const pStyle = getComputedStyle(p);
expect(html).to.contain('@keyframes');
expect(html).to.contain('<style>');
expect(pStyle).to.have.property('animation');
});
Teacher's solution will be available in:
20:00
