diff --git a/docs/css-prop.mdx b/docs/css-prop.mdx index 2fc404c9f..20dfb1811 100644 --- a/docs/css-prop.mdx +++ b/docs/css-prop.mdx @@ -241,8 +241,8 @@ The styles are concatenated together and inserted via `insertRule`. ```css .css-2 { - font-size: 14px, - font-family: Georgia, serif, + font-size: 14px; + font-family: Georgia, serif; color: darkgray; } ``` @@ -264,8 +264,8 @@ The styles are concatenated together and inserted via `insertRule`. + line-height: 1.5; - font-family: 'sans-serif'; - color: black; -- font-size: 14px, -+ font-family: Georgia, serif, +- font-size: 14px; ++ font-family: Georgia, serif; + color: darkgray; + font-size: 10px; }