freeCodeCamp/curriculum/challenges/japanese/01-responsive-web-design/basic-html-and-html5/nest-many-elements-within-a...

4.1 KiB

id title challengeType videoUrl forumTopicId dashedName
bad87fee1348bd9aede08835 1 つの div 要素に多くの要素をネストする 0 https://scrimba.com/p/pVMPUv/cNW4kC3 18246 nest-many-elements-within-a-single-div-element

--description--

div 要素は、division (分割) 要素とも呼ばれ、他の要素を入れる入れ物として汎用的に使われます。

div 要素はおそらくもっともよく使われる HTML 要素です。

終了タグを必要とする他の要素と同じように、div 要素は <div> で開始し、別の行で </div> で終了します。

--instructions--

"Things cats love" と "Top 3 things cats hate" のリストを全て、1 つの div 要素の中にネストしてください。

ヒント: "Things cats love" の p 要素の上に div の開始タグを、ol の終了タグの後に div の終了タグを配置して、両方のリストが 1 つの div の中に入るようにしてください。

--hints--

p 要素は、div 要素の中にネストする必要があります。

assert($('div').children('p').length > 1);

ul 要素は、div 要素の中にネストする必要があります。

assert($('div').children('ul').length > 0);

ol 要素は、div 要素の中にネストする必要があります。

assert($('div').children('ol').length > 0);

div 要素には終了タグが必要です。

assert(
  code.match(/<\/div>/g) &&
    code.match(/<\/div>/g).length === code.match(/<div>/g).length
);

--seed--

--seed-contents--

<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>

  <a href="#"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>

  <p>Things cats love:</p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>

  <form action="https://www.freecatphotoapp.com/submit-cat-photo">
    <label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor" value="indoor" checked> Indoor</label>
    <label for="outdoor"><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label><br>
    <label for="loving"><input id="loving" type="checkbox" name="personality" value="loving" checked> Loving</label>
    <label for="lazy"><input id="lazy" type="checkbox" name="personality" value="lazy"> Lazy</label>
    <label for="energetic"><input id="energetic" type="checkbox" name="personality" value="energetic"> Energetic</label><br>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</main>

--solutions--

<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>

  <a href="#"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
  <div>
    <p>Things cats love:</p>
    <ul>
      <li>cat nip</li>
      <li>laser pointers</li>
      <li>lasagna</li>
    </ul>
    <p>Top 3 things cats hate:</p>
    <ol>
      <li>flea treatment</li>
      <li>thunder</li>
      <li>other cats</li>
    </ol>
  </div>
  <form action="https://www.freecatphotoapp.com/submit-cat-photo">
    <label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor" value="indoor" checked> Indoor</label>
    <label for="outdoor"><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label><br>
    <label for="loving"><input id="loving" type="checkbox" name="personality" value="loving" checked> Loving</label>
    <label for="lazy"><input id="lazy" type="checkbox" name="personality" value="lazy"> Lazy</label>
    <label for="energetic"><input id="energetic" type="checkbox" name="personality" value="energetic"> Energetic</label><br>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</main>