aboutsummaryrefslogtreecommitdiff
path: root/build/multiple-css-background-images
diff options
context:
space:
mode:
Diffstat (limited to 'build/multiple-css-background-images')
-rw-r--r--build/multiple-css-background-images/index.html46
1 files changed, 46 insertions, 0 deletions
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 @@
+<!doctype html>
+<html lang="en" id="top">
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="icon" href="data:,">
+ <title>Using Multiple CSS Background Images</title>
+ <link href="https://bt.ht/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
+ <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}table{text-align:left;width:100%;}</style>
+</head>
+
+<nav>
+ <a href="#menu">Menu &darr;</a>
+</nav>
+
+<main>
+<h1>Using Multiple CSS Background Images</h1>
+<p>2018-09-28</p>
+<p>It isn't something developers have a need to do very often, but you <em>can</em> set multiple background images on a single element.</p>
+<p>Example:</p>
+<pre><code>.element {
+ background: url('image_path') center repeat, linear-gradient(transparent 0%, #000 100%) no-repeat;
+}
+</code></pre>
+<p>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.</p>
+<footer role="contentinfo">
+ <h2>Menu Navigation</h2>
+ <ul id="menu">
+ <li><a href="/">Home</a></li>
+ <li><a href="/projects">Projects</a></li>
+ <li><a href="/uses">Uses</a></li>
+ <li><a href="/wiki">Wiki</a></li>
+ <li><a href="/resume">Resume</a></li>
+ <li><a href="/colophon">Colophon</a></li>
+ <li><a href="/now">Now</a></li>
+ <li><a href="/donate">Donate</a></li>
+ <li><a href="/atom.xml">RSS</a></li>
+ <li><a href="#top">&uarr; Top of the page</a></li>
+ </ul>
+ <small>
+ Built with <a href="https://git.sr.ht/~bt/barf">barf</a>. <br>
+ Maintained with ♥ for the web. <br>
+ Proud supporter of <a href="https://usefathom.com/ref/DKHJVX">Fathom</a> &amp; <a href="https://nextdns.io/?from=74d3p3h8">NextDNS</a>. <br>
+ The content for this site is <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.<br> The <a href="https://git.sr.ht/~bt/bt.ht">code for this site</a> is <a href="https://git.sr.ht/~bt/bt.ht/tree/master/item/LICENSE">MIT</a>.
+ </small>
+</footer> \ No newline at end of file