CSS: Horizontal lines
Instructions
Loading...
Your exercise will be checked with these tests:
const { test } = require('tests');
test(({ query, expect }) => {
const element = query(document, 'p');
expect(element).to.have.class('line');
const style = getComputedStyle(element);
expect(style).to.have.property('text-decoration', 'underline');
});
Teacher's solution will be available in:
20:00
