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

              
                <article>

  <footer class="warning">This demo only works in browsers that support initial-letter. If you can see this message, then your browser doesn't support the initial-letter property. In early 2016, try this demo in Safari for Mac or any browser on iOS. Or later, look up browser support on <a href="http://caniuse.com/#search=initial-letter">caniuse.com</a></footer>

  <p>The carrot is a root vegetable, usually orange in colour, though purple, black, red, white, and yellow varieties exist. It has a crisp texture when fresh. The most commonly eaten part of a carrot is a taproot, although the greens are sometimes eaten as well. It is a domesticated form of the wild carrot Daucus carota, native to Europe and southwestern Asia. The domestic carrot has been selectively bred for its greatly enlarged and more palatable, less woody-textured edible taproot. The Food and Agriculture Organization of the United Nations (FAO) reports that world production of carrots and turnips (these plants are combined by the FAO for reporting purposes) for calendar year 2011 was almost 35.658 million tonnes. Almost half were grown in China. Carrots are widely used in many cuisines, especially in the preparation of salads, and carrot salads are a tradition in many regional cuisines.</p>

</article>
              
            
!

CSS

              
                html {
  font-family: Georgia, serif;
  font-size: 21px;
}
a {
  color: #e75e18;
}
article { 
  p {
    line-height: 2em;  
    width: 64vw;
    margin: 12vw 24vw 12vw 12vw;
    padding-bottom: 6vw;
    margin-bottom: 6vw;
  }
}

@supports (initial-letter: 4) or
(-webkit-initial-letter: 4) {
  article {  
    p::first-letter {
      color: #ae4ea5;
      font-weight: bold;
      margin-right: 0.5em;
      margin-left: -2.35em;
      -webkit-initial-letter: 4 1;
      initial-letter: 4 1;

    }
  }
}


// ---------------------------------------
//   Styling a warning message, hiding it when support for initial letter is present 
// ---------------------------------------
.warning { 
  color: red; 
  font-size: 120%;
  margin: 2em;
}
@supports (initial-letter: 4 ) or
  (-webkit-initial-letter: 4 ) {
  .warning { display: none; }
}
  
              
            
!

JS

              
                
              
            
!
999px

Console