From 6b742c459266b18e2b375b35205ce8a6c02f0452 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Thu, 6 Jun 2024 08:05:12 -0400 Subject: Initial commit --- build/multiple-css-background-images/index.html | 46 +++++++++++++++++++++++++ 1 file changed, 46 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..fcf7539 --- /dev/null +++ b/build/multiple-css-background-images/index.html @@ -0,0 +1,46 @@ + + + + + + + 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