From 3f6a9546ec13063d0d5bdf21d30a93d3e8aa6050 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Tue, 2 Jul 2024 14:22:21 -0400 Subject: Rebuild changes based off latest barf --- build/css-variables/index.html | 66 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 build/css-variables/index.html (limited to 'build/css-variables') diff --git a/build/css-variables/index.html b/build/css-variables/index.html new file mode 100644 index 0000000..aa58fc6 --- /dev/null +++ b/build/css-variables/index.html @@ -0,0 +1,66 @@ + + + + + + + + CSS Variables + + + + + + + +
+

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 (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!

+ \ No newline at end of file -- cgit v1.2.3-54-g00ecf