Files

74 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

---
id: 61fd70336ebb3e4f62ee81ba
title: Step 8
challengeType: 0
dashedName: step-8
---
# --description--
HTML tables use the `caption` element to describe what the table is about. The `caption` element should always be the first child of a `table`, but can be positioned with the `caption-side` CSS property.
Add a `caption` element to your first `table`, and give it the text `Assets`.
# --hints--
Your first `table` element should have a `caption` element.
```js
assert(document.querySelector('table')?.children?.[0]?.localName === 'caption');
```
Your `caption` element should have the text `Assets`.
```js
assert(document.querySelector('caption')?.textContent === 'Assets');
```
# --seed--
## --seed-contents--
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Balance Sheet</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<main>
<section>
<h1>
<span class="flex">
<span>AcmeWidgetCorp</span>
<span>Balance Sheet</span>
</span>
</h1>
<div id="years" aria-hidden="true">
<span class="year">2019</span>
<span class="year">2020</span>
<span class="year">2021</span>
</div>
<div class="table-wrap">
--fcc-editable-region--
<table>
</table>
--fcc-editable-region--
<table>
</table>
<table>
</table>
</div>
</section>
</main>
</body>
</html>
```
```css
```