diff options
Diffstat (limited to 'build/multiple-css-background-images/index.html')
-rw-r--r-- | build/multiple-css-background-images/index.html | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/build/multiple-css-background-images/index.html b/build/multiple-css-background-images/index.html index 5c1e47a..c41773d 100644 --- a/build/multiple-css-background-images/index.html +++ b/build/multiple-css-background-images/index.html @@ -3,11 +3,12 @@ <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="color-scheme" content="dark light"> <link rel="icon" href="data:,"> <title>Using Multiple CSS Background Images</title> <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> +<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}blockquote{background:rgba(0,0,0,0.1);border-left:4px solid;padding-left:5px;}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> @@ -16,18 +17,13 @@ <main> <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>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> |