freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/basic-html-and-html5/fill-in-the-blank-with-plac...

1.2 KiB
Raw Blame History

id title challengeType videoUrl forumTopicId dashedName
bad87fee1348bd9aedf08833 用占位符文本填充空白 0 https://scrimba.com/p/pVMPUv/cgR7Dc7 18178 fill-in-the-blank-with-placeholder-text

--description--

Web 开发者通常用 lorem ipsum text 来做占位符。 lorem ipsum text 是从古罗马西塞罗的一段著名经文中随机抽取的。

Lorem ipsum text 自 16 世纪以来就在排版中被用作占位符,这一习惯也在 Web 开发中得以延续。

五个世纪已经很久远了。 因为我们正在构建一个 CatPhotoApp所以我们使用 “kitty ipsum” 文本。

--instructions--

p 元素的内容文本应包含 Kitty ipsum

--hints--

你的 p 元素应包含 “kitty ipsum” 文本的前面几个词。

assert.isTrue(/Kitty(\s)+ipsum/gi.test($('p').text()));

--seed--

--seed-contents--

<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<p>Hello Paragraph</p>

--solutions--

<h1>Hello World</h1>

<h2>CatPhotoApp</h2>

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff</p>