From cfd09e30bc555eb5673afd8ffbf5aa17f30ed8b0 Mon Sep 17 00:00:00 2001 From: Edulop139 <31073454+Edulop139@users.noreply.github.com> Date: Thu, 15 Nov 2018 02:35:21 -0500 Subject: [PATCH] Grammer fixes (#23299) added a two spaces for words that shouldn't be connected as compound words --- guide/english/css/css-custom-properties/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/css/css-custom-properties/index.md b/guide/english/css/css-custom-properties/index.md index 85e920aa18..b7bed389c6 100644 --- a/guide/english/css/css-custom-properties/index.md +++ b/guide/english/css/css-custom-properties/index.md @@ -6,7 +6,7 @@ title: CSS Custom Properties CSS custom properties are also referred to as CSS variables. As of October 2018, CSS custom properties are still an experimental technology. Consider [browser support](https://developer.mozilla.org/en-US/docs/Web/CSS/--*#Browser_compatibility) before using the feature in production. ### Declaring Custom Properties -Within a selector, custom properties are declared using two hyphens (--) and the name, followed by the value. The value can be simple, such as a color (RGB, hexcode, etc.) or size (using pixel, em, rem, etc.), or it can be more complex, like a dropshadow definition. See the examples below. +Within a selector, custom properties are declared using two hyphens (--) and the name, followed by the value. The value can be simple, such as a color (RGB, hex code, etc.) or size (using pixel, em, rem, etc.), or it can be more complex, like a drop shadow definition. See the examples below. ```css :root { --firstVariable: red;