CSS: Cascade
Instructions
Loading...
Your exercise will be checked with these tests:
const { test } = require('tests');
test(({ query, expect }) => {
const element = query(document, '.cascade');
const style = getComputedStyle(element);
expect(style).to.have.property('font-size', '25px');
expect(style).to.have.property('padding', '15px');
});
Teacher's solution will be available in:
20:00
