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.html22
1 files changed, 14 insertions, 8 deletions
diff --git a/build/multiple-css-background-images/index.html b/build/multiple-css-background-images/index.html
index fcf7539..5c1e47a 100644
--- a/build/multiple-css-background-images/index.html
+++ b/build/multiple-css-background-images/index.html
@@ -1,28 +1,34 @@
<!doctype html>
-<html lang="en" id="top">
+<html lang="en">
<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>
+ <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
+ <link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
+<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style>
</head>
<nav>
- <a href="#menu">Menu &darr;</a>
+ <a href="#menu">Menu &darr;</a>
</nav>
<main>
-<h1>Using Multiple CSS Background Images</h1>
+<h1 id="using-multiple-css-background-images">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>It isn&#8217;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;
+ background: url(&#39;image_path&#39;) 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>
+
+<p>What can you do with this? It&#8217;s only limited by your imagination, but I&#8217;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">