freeCodeCamp/curriculum/challenges/espanol/14-responsive-web-design-22/learn-more-about-css-pseudo.../61fd719788899952e67692b9.md

1.9 KiB

id title challengeType dashedName
61fd719788899952e67692b9 Paso 9 0 step-9

--description--

Los elementos thead y tbody son usados para indicar que parte de tu tabla es la cabecera, y que parte contiene los datos principales o el contenido.

Agrega un thead y un tbody a tu primer table, debajo del elemento caption.

--hints--

Tu primer elemento table debe tener un elemento thead.

assert(document.querySelectorAll('table')?.[0]?.querySelector('thead'));

Tu primer elemento table debe tener un elemento tbody.

assert(document.querySelectorAll('table')?.[0]?.querySelector('tbody'));

Tu elemento thead debe estar inmediatamente debajo de tu elemento caption.

assert(document.querySelector('caption')?.nextElementSibling?.localName === 'thead');

Tu elemento tbody debe estar inmediatamente debajo de tu elemento thead.

assert(document.querySelector('thead')?.nextElementSibling?.localName === 'tbody');

--seed--

--seed-contents--

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Balance Sheet</title>
    <link rel="stylesheet" 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>
            <caption>Assets</caption>
          </table>
--fcc-editable-region--
          <table>
          </table>
          <table>
          </table>
        </div>
      </section>
    </main>
  </body>
</html>