Click here to view more cat photos.
Things cats love:
- cat nip
- laser pointers
- lasagna
Top 3 things cats hate:
- flea treatment
- thunder
- other cats
div
element, also known as a division element, is a general purpose container for other elements.
The div
element is probably the most commonly used HTML element of all.
Just like any other non-self-closing element, you can open a div
element with <div>
and close it on another line with </div>
.
div
element.
Hint: Try putting your opening div
tag above your "Things cats love" p
element and your closing div
tag after your closing ol
tag so that both of your lists are within one div
.
p
elements should be nested inside your div
element.
testString: assert($("div").children("p").length > 1);
- text: Your ul
element should be nested inside your div
element.
testString: assert($("div").children("ul").length > 0);
- text: Your ol
element should be nested inside your div
element.
testString: assert($("div").children("ol").length > 0);
- text: Your div
element should have a closing tag.
testString: assert(code.match(/<\/div>/g) && code.match(/<\/div>/g).length === code.match(/Click here to view more cat photos.
Things cats love:
Top 3 things cats hate:
Click here to view more cat photos.
Things cats love:
Top 3 things cats hate: