aboutsummaryrefslogtreecommitdiff
path: root/_posts/2018-09-28-multiple-css-background-images.md
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-07-02 14:28:49 -0400
committerBradley Taunt <bt@btxx.org>2024-07-02 14:28:49 -0400
commitdc6db80fa72286704849ef61ee0e5ccb5841cb09 (patch)
tree9235d796229d49211c27a07b9d18585d503baa94 /_posts/2018-09-28-multiple-css-background-images.md
parent088c87bcb58be576308da503d4f11a68843c5013 (diff)
Conversion to barf for testing purposes
Diffstat (limited to '_posts/2018-09-28-multiple-css-background-images.md')
-rw-r--r--_posts/2018-09-28-multiple-css-background-images.md18
1 files changed, 0 insertions, 18 deletions
diff --git a/_posts/2018-09-28-multiple-css-background-images.md b/_posts/2018-09-28-multiple-css-background-images.md
deleted file mode 100644
index b90a897..0000000
--- a/_posts/2018-09-28-multiple-css-background-images.md
+++ /dev/null
@@ -1,18 +0,0 @@
----
-layout: post
-title: "Using Multiple CSS Background Images"
-date: 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.