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 class="recipe">
  
  <h1>Chris' Four-Bean Chili</h1>

  <div class="recipe-image">
  
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/chili.jpg">
    
  </div>

  <div class="recipe-text">

    <p>My grandpappy used to make this chili over the campfire under the Texas stars. The secret ingredient was a little squeeze of scorpion venom in the pot.</p>

    <h2>Ingredients</h2>

    <ul>
      <li>
        <strong>1lb</strong>
        ground bison
      </li>
      <li>
        <strong>1 cup</strong>
        diced onion
      </li>
      <li>
        <strong>4</strong>
        diced jalepeños
      </li>
      <li>
        <strong>1 cup</strong>
        black beans
      </li>
      <li>
        <strong>1 cup</strong>
        great northern beans
      </li>
      <li>
        <strong>1 cup</strong>
        kidney beans
      </li>
      <li>
        <strong>1 cup</strong>
        pinto beans
      </li>
      <li>
        <strong>4 cloves</strong>
        garlic
      </li>
      <li>
        <strong>2 tbsp</strong>
        mexican chili powder
      </li>
      <li>
        <strong>2 tsp</strong>
        salt
      </li>
      <li>
        <strong>2 tsp</strong>
        ground pepper
      </li>
      <li>
        <strong>1 tsp</strong>
        cayenne
      </li>
      <li>
        <strong>28oz</strong>
        smushed tomatoes
      </li>
      <li>
        <strong>3 cups</strong>
        beef broth
      </li>
    </ul>
    
  </div>
    
  <div class="recipe-directions">

    <h2>Directions</h2>

    <p>Get your filthiest campfire-scorched Dutch oven over the fire the best you can situate it. Brown the bison. Add the diced onion and spices, sautee until soft. Add tomatoes and broth and bring to a simmer for 40 minutes. Add beans and cook another 30 minutes.</p>

    <p>Serve with Tabasco and a giant spoon.</p>
    
  </div>
  
</article>
              
            
!

CSS

              
                @import url(https://fonts.googleapis.com/css?family=Pathway+Gothic+One);

* {
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

h1, h2 {
  font-family: 'Pathway Gothic One', sans-serif;
  margin: 0 0 20px 0;
}

body {
  background: tan;
  padding: 10px;
}

.recipe > div {
  float: left;
  width: 33.33%;
  padding: 0 10px;
}
.recipe > h1 {
  margin: 0 0 10px 10px;
}
.recipe-image img {
  max-width: 100%;
}
.recipe-text {
  width: 320px;
  float: right;
}
              
            
!

JS

              
                
              
            
!
999px

Console