Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h1>Hexadecimal color values in SVG as data url</h1>
<p>This works:</p>
<figure id="keyword">
	<div></div>
	<figcaption><code>background-image: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"&gt;&lt;circle fill="<mark>red</mark>" cx="10" cy="10" r="10"/&gt;&lt;/svg&gt;')</code></figcaption>
</figure>
<p>RGB(A) and HSL(A) color values work as well. One might think hexadecimal values like <code>#F00</code> would work the same. They even do in some browsers, but do not in others (e.g. Firefox):
</p>
<figure id="hex-unescaped">
	<div></div>
	<figcaption><code>background-image: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"&gt;&lt;circle fill="<mark>#F00</mark>" cx="10" cy="10" r="10"/&gt;&lt;/svg&gt;')</code></figcaption>
</figure>

<p>Reason: <code>#</code> in URLs starts a fragment identifier. If you mean the character #, you need to escape it: <code>%23</code> in this case.</p>
<figure id="hex-escaped">
	<div></div>
	<figcaption><code>background-image: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"&gt;&lt;circle fill="<mark>%23F00</mark>" cx="10" cy="10" r="10"/&gt;&lt;/svg&gt;')</code></figcaption>
</figure>

<p>Thanks to Robert Longson for pointing that out.</p>


              
            
!

CSS

              
                #keyword div {
		background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle fill="red" cx="10" cy="10" r="10"/></svg>')
}

#hex-unescaped div {
		background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle fill="#F00" cx="10" cy="10" r="10"/></svg>')
}

#hex-escaped div {
		background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle fill="%23F00" cx="10" cy="10" r="10"/></svg>')
}

html {
		font: 1em/1.5 sans-serif;
}

figure {
		margin: 1em 0;
		padding: 0
}

figcaption {
		margin-top: 0.5em;
		max-width: 80ch
}

figure>div {
		width: 100%;
		height: 4em;
		background-repeat: no-repeat
}

* {
		box-sizing: border-box
}
              
            
!

JS

              
                
              
            
!
999px

Console