2020-09-16 11:54:09 +05:30

2.9 KiB

id, title, challengeType, isHidden
id title challengeType isHidden
5dfb6a35eacea3f48c6300b4 Part 23 0 true

Description

A figure caption (figcaption) element is used to add a caption to describe the image contained withing the figure element. For example, <figcaption>A cute cat</figcaption> adds the caption A cute cat.

After the image nested in the figure element, add a figcaption element with the text Cats love lasagna.

Tests

tests:
  - text: The Lasagna `img` element should be nested in the `figure` element.
    testString: assert( document.querySelector('figure > img') && document.querySelector('figure > img').getAttribute('src').toLowerCase() === 'https://bit.ly/fcc-lasagna');
  - text: "Your `figcaption` element should have an opening tag. Opening tags have the following syntax: `<elementName>`."
    testString: assert( document.querySelector('figcaption') );
  - text: Your `figcaption` element should have a closing tag. Closing tags have a `/` just after the `<` character.
    testString: assert( code.match(/<\/figcaption\>/) );
  - text: The `figcaption` element should be nested in the `figure` element.
    testString: assert( document.querySelector('figure > figcaption') && document.querySelector('figure > figcaption'));
  - text: The lasagna `img` element should be nested in the `figure` element.
    testString: assert( document.querySelector('figure > img') && document.querySelector('figure > img').getAttribute('src').toLowerCase() === 'https://bit.ly/fcc-lasagna');
  - text: The `figcaption` element nested in the `figure` element should be below the `img` element. You have them in the wrong order.
    testString: assert( document.querySelector('figcaption').previousElementSibling.nodeName === 'IMG');
  - text: Your `figcaption` element's text should be `Cats love lasagna.` You have either omitted the text or have a typo.
    testString: assert( document.querySelector('figcaption').innerText.match(/Cats love lasagna.?$/i) );

Challenge Seed

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <main>
      <section>
        <h2>Cat Photos</h2>
        <!-- TODO: Add link to cat photos -->
        <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
        <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
      </section>
      <section>
        <h2>Cat Lists</h2>
        <h3>Things cats love:</h3>
        <ul>
          <li>cat nip</li>
          <li>laser pointers</li>
          <li>lasagna</li>
        </ul>
        <figure>
          --fcc-editable-region--
          <img src="https://bit.ly/fcc-lasagna" alt="A slice of lasagna on a plate.">
          --fcc-editable-region--
        </figure>
      </section>
    </main>
  </body>
</html>