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/multiple-css-background-images/index.html | 49 +++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 build/multiple-css-background-images/index.html (limited to 'build/multiple-css-background-images') diff --git a/build/multiple-css-background-images/index.html b/build/multiple-css-background-images/index.html new file mode 100644 index 0000000..87e1477 --- /dev/null +++ b/build/multiple-css-background-images/index.html @@ -0,0 +1,49 @@ + + + + + + + + Using Multiple CSS Background Images + + + + + + + +
+

Using Multiple CSS Background Images

+

2018-09-28

+

It isn’t something developers have a need to do very often, but you can set multiple background images on a single element.

+

Example:

+
.element {
+    background: url('image_path') center repeat, linear-gradient(transparent 0%, #000 100%) no-repeat;
+}
+
+

What can you do with this? It’s only limited by your imagination, but I’m personally a fan of always using as few elements as possible when working on a project.

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