--- id: 587d781b367417b2b2512abe title: 给卡片元素添加 box-shadow challengeType: 0 videoUrl: 'https://scrimba.com/c/cvVZdUd' forumTopicId: 301031 dashedName: add-a-box-shadow-to-a-card-like-element --- # --description-- `box-shadow` 属性用来给元素添加阴影,该属性值是由逗号分隔的一个或多个阴影列表。 `box-shadow` 属性的阴影依次由下面这些值描述: 其中 `blur-radius` 和 `spread-radius` 是可选的。 可以通过逗号分隔每个 `box-shadow` 元素的属性来添加多个 box-shadow。 如下为添加了模糊效果的例子,它使用了透明度较高的黑色作为阴影: ```css box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23); ``` # --instructions-- 元素现在有一个 `thumbnail` id。 在这个选择器中,使用上面的示例 CSS 值在卡片上加一个 `box-shadow`。 # --hints-- 应该给 id 为 `thumbnail` 的元素添加 `box-shadow` 属性。 ```js assert(code.match(/#thumbnail\s*?{\s*?box-shadow/g)); ``` `box-shadow` 属性值应该是题目说明中指定的 CSS 值。 ```js assert( code.match( /box-shadow:\s*?0\s+?10px\s+?20px\s+?rgba\(\s*?0\s*?,\s*?0\s*?,\s*?0\s*?,\s*?0?\.19\)\s*?,\s*?0\s+?6px\s+?6px\s+?rgba\(\s*?0\s*?,\s*?0\s*?,\s*?0\s*?,\s*?0?\.23\)/gi ) ); ``` # --seed-- ## --seed-contents-- ```html

Alphabet


Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

``` # --solutions-- ```html

Alphabet


Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

```