diff options
author | Florian Dieminger <me@fiji-flo.de> | 2021-03-15 18:56:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 18:56:01 +0100 |
commit | 1bbb4d9683edd28fc947b17804e5b882184ecfcb (patch) | |
tree | 032aa6be1de60c220df8cf308806e05532f58aec /files/zh-cn/web/css/var() | |
parent | 8140842a1b9d12c52c2b5db11352e4f5d91058d7 (diff) | |
download | translated-content-1bbb4d9683edd28fc947b17804e5b882184ecfcb.tar.gz translated-content-1bbb4d9683edd28fc947b17804e5b882184ecfcb.tar.bz2 translated-content-1bbb4d9683edd28fc947b17804e5b882184ecfcb.zip |
remove pre for CSSSyntaxd (#175)
```
s/<pre.*>(\{\{csssyntax(\(.*\))?\}\})\n?</pre>/$1/g
```
Diffstat (limited to 'files/zh-cn/web/css/var()')
-rw-r--r-- | files/zh-cn/web/css/var()/index.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/files/zh-cn/web/css/var()/index.html b/files/zh-cn/web/css/var()/index.html index 25af709130..281a7dcf48 100644 --- a/files/zh-cn/web/css/var()/index.html +++ b/files/zh-cn/web/css/var()/index.html @@ -20,8 +20,7 @@ translation_of: Web/CSS/var() <p>方法的第一个参数是要替换的自定义属性的名称。函数的可选第二个参数用作回退值。如果第一个参数引用的自定义属性无效,则该函数将使用第二个值。</p> -<pre class="syntaxbox notranslate">{{csssyntax}} -</pre> +{{csssyntax}} <div class="note"> <p>注意:自定义属性的回退值允许使用逗号。例如, <code>var(--foo, red, blue)</code> 将<code>red, blue</code>同时指定为回退值;即是说任何在第一个逗号之后到函数结尾前的值都会被考虑为回退值。</p> |