From 14d227d46a2177a8928333894252d6299f531097 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Mon, 27 Nov 2023 12:25:51 -0500 Subject: Trying to render posts all at once --- posts/css-variables.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 posts/css-variables.md (limited to 'posts/css-variables.md') diff --git a/posts/css-variables.md b/posts/css-variables.md new file mode 100644 index 0000000..dff8f13 --- /dev/null +++ b/posts/css-variables.md @@ -0,0 +1,45 @@ +# CSS Variables + +2018-03-24 + +The CSS language is becoming even more awesome and powerful everyday. In this quick article I'd like to focus specifically on the "new" CSS variable function that you can start using in your projects *right now*. + +### Getting started is easy + +Let's just jump right in - this is how you create variables in vanilla CSS: + + + :root { + --base-color: #e0e0e0; + --text-color: #111; + } + + +We are using the `:root` selector at the very top of our CSS file in order to call these variables into any elements in the rest of our document. This is normally the safest way to include variables. + +As for the variables themselves, you declare that they are variables using the `--` tags, followed by the variable's name and it's property. Pretty simple stuff, right? + +Now let's use those variables: + + + .header { + border: 1px solid var(--base-color); + } + + .main-container { + background-color: var(--base-color); + color: var(--text-color); + } + + +That's it! It's also good to know that CSS variables have pretty decent [browser support](https://caniuse.com/#feat=css-variables) (who likes IE11 anyway). + + +### Why not just use a preprocessor? + +I'm a pretty big fan of Sass and Stylus, but sometimes it's refreshing to just use vanilla CSS for certain projects. Most preprocessors have had the ability to use variables and mixins for a while, but I prefer to avoid build scripts when not absolutely necessary. + +Get out there and have fun with some variables! + + + -- cgit v1.2.3-54-g00ecf