Grammer fixes (#23299)

added a two spaces for  words that shouldn't be connected as compound words
This commit is contained in:
Edulop139
2018-11-15 02:35:21 -05:00
committed by Manish Giri
parent 20f85f708a
commit cfd09e30bc

View File

@ -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. 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 ### 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 ```css
:root { :root {
--firstVariable: red; --firstVariable: red;