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

              
                <p>SVG doesn't have a native shadow attribute/property like CSS's box-shadow or text-shadow, however shadows can still be acheived in a couple ways.</p>

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200px" height="200px" viewBox="0 0 200 200" version="1.1">
	
  <title>SVG Shadows</title>

  <defs>
    <filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="shadow-filter">
      <feOffset dx="0" dy="4" in="SourceAlpha" result="shadowOffsetOuter1"/>
      <feGaussianBlur stdDeviation="10" in="shadowOffsetOuter1" result="shadowBlurOuter1"/>
      <feColorMatrix values="0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.2 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"/>
      <feMerge>
        <feMergeNode in="shadowMatrixOuter1"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <rect x="25" y="25" width="150" height="150" fill="#FFFFFF" filter="url(#shadow-filter)"/>
  
</svg>


<p>You could duplicate an element, change its color to black, drop the opacity, and blur it with a basic filter element. Or, you could use a more complex filter element to do all that for you. Fortunately, Sketch does the latter for you when you export a layer with a shadow, as shown here.<br><br>The markup looks complicated, but here's a breakdown: the feOffset element moves the shadow down 4px, the feGaussianBlur blurs it, the feColorMatrix makes it black and lowers the opacity, and feMergeNode combines the shadow with the element that the shadow belongs to. SVG filters are super powerful, but thankfully Sketch figures them out for you. Be careful to use them sparingly to prevent a performance bottleneck.</p>
              
            
!

CSS

              
                svg {
	display: block;
	margin: 40px auto;
}

body {
	padding-top: 60px;
}

p {
	font-family: Avenir, sans-serif;
	color: #404248;
	font-size: 16px;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}
              
            
!

JS

              
                
              
            
!
999px

Console