* refactor: delete existing steps * feat: create new steps * feat: start writing tests * feat: complete html tests * feat: remaining tests * chore: remove "test 1" Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> * fix: wow I really botched that find and replace Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> * fix: why firefox gotta be different? * fix: I can maths... * chore: apply shaun's review suggestions Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> * fix: unbotch the css oops * fix: acme widget corp * fix: remove z-index * feat: introduce the calc() function * fix: even one more find and replace oops Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com>
925 B
925 B
id, title, challengeType, dashedName
id | title | challengeType | dashedName |
---|---|---|---|
61fd66c687e610436494c6f1 | Step 3 | 0 | step-3 |
--description--
Within your section
element, add an h1
element with a nested span
element.
--hints--
Your section
element should have an h1
element.
assert(document.querySelector('section')?.children?.[0]?.localName === 'h1');
Your h1
element should have a span
element.
assert(document.querySelector('h1')?.children?.[0]?.localName === 'span');
--seed--
--seed-contents--
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AcmeWidgetCorp Balance Sheet</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<main>
--fcc-editable-region--
<section>
</section>
--fcc-editable-region--
</main>
</body>
</html>