From dc6db80fa72286704849ef61ee0e5ccb5841cb09 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Tue, 2 Jul 2024 14:28:49 -0400 Subject: Conversion to barf for testing purposes --- _posts/2018-03-24-css-variables.md | 48 -------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 _posts/2018-03-24-css-variables.md (limited to '_posts/2018-03-24-css-variables.md') diff --git a/_posts/2018-03-24-css-variables.md b/_posts/2018-03-24-css-variables.md deleted file mode 100644 index e0a17ed..0000000 --- a/_posts/2018-03-24-css-variables.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -layout: post -title: "CSS Variables" -date: 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