diff --git a/chapters/019 函数.md b/chapters/019 函数.md index 839184d..98f3f97 100644 --- a/chapters/019 函数.md +++ b/chapters/019 函数.md @@ -44,10 +44,10 @@ ```css .my-element { - background: var(--base-color, hotpink); + background: var(--base-color, yellow); } ``` -你还可以给`var()`函数传递第二个参数,表示如果没有找到`--base-color`的定义,函数会以`hotpink`作为返回值(输出)。 +你还可以给`var()`函数传递第二个参数,表示如果没有找到`--base-color`的定义,函数会以`yellow`作为返回值(输出)。