69 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5a9d727a424fe3d0e10cad12
title: 使用一个自定义的 CSS 变量
challengeType: 0
videoUrl: 'https://scrimba.com/c/cM989ck'
forumTopicId: 301090
---
# --description--
创建变量后CSS 属性可以通过调用变量名来使用它对应的值。
```css
background: var(--penguin-skin);
```
因为引用了 `--penguin-skin` 变量的值,使用了这个样式的元素背景颜色会是灰色。
**注意:**如果变量名不匹配,则样式不会生效。
# --instructions--
`--penguin-skin` 的值应用到 class 为 `penguin-top``penguin-bottom``right-hand``left-hand``background` 的属性值。
# --hints--
class 为 `penguin-top``background` 属性值应使用变量 `--penguin-skin` 的值。
```js
assert(
code.match(
/.penguin-top\s*?{[\s\S]*background\s*?:\s*?var\s*?\(\s*?--penguin-skin\s*?\)\s*?;[\s\S]*}[\s\S]*.penguin-bottom\s{/gi
)
);
```
class 为 `penguin-bottom``background` 属性值应使用变量 `--penguin-skin` 的值。
```js
assert(
code.match(
/.penguin-bottom\s*?{[\s\S]*background\s*?:\s*?var\s*?\(\s*?--penguin-skin\s*?\)\s*?;[\s\S]*}[\s\S]*.right-hand\s{/gi
)
);
```
class 为 `right-hand``background` 属性值应使用变量 `--penguin-skin` 的值。
```js
assert(
code.match(
/.right-hand\s*?{[\s\S]*background\s*?:\s*?var\s*?\(\s*?--penguin-skin\s*?\)\s*?;[\s\S]*}[\s\S]*.left-hand\s{/gi
)
);
```
class 为 `left-hand``background` 属性值应使用变量 `--penguin-skin` 的值。
```js
assert(
code.match(
/.left-hand\s*?{[\s\S]*background\s*?:\s*?var\s*?\(\s*?--penguin-skin\s*?\)\s*?;[\s\S]*}/gi
)
);
```
# --solutions--