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

              
                <div class="shubox--container">
  <form class="shubox--form codepen--center">
    
    <input
      tabindex="1"
      type="text"
      placeholder="Click to upload a photo"
      class="shubox--input"
      id="shubox--input">

    <textarea
      tabindex="2"
      placeholder="Leave a comment or drag and drop some images."
      class="shubox--textarea"
      id="shubox--textarea"></textarea>
    <div
      tabindex="3"
      id="shubox--click-to-upload"
      class="shubox--click-to-upload">
      
      Drap + drop into textarea or <a>click here 
      to select them</a>.
    </div>
  </form>
</div>
              
            
!

CSS

              
                .shubox--form p
  text-align: left
  margin-bottom: 2rem
.shubox--input,
.shubox--textarea
  background: #efefef
  padding: 1rem
  
.shubox--textarea
  margin-bottom: 0
  min-height: 10rem
  clear: both
  display: block

.shubox--click-to-upload
  cursor: pointer
  text-align: left
  background: lightGray
  font-size: .6rem
  text-transform: lowercase
  padding: .5rem 1rem
  opacity: .8
  border-bottom-left-radius: 4px
  border-bottom-right-radius: 4px
   
  &:hover
    opacity: 1
              
            
!

JS

              
                // top `<input/>` 👇
// click, or drag and drop to upload
// limit of 1 file at a time
new Shubox("#shubox--input", {
  key: "7e1e4069",
  cdn: "http://codepens.shubox.io",
  textBehavior: "replace"
});

// bottom `<textarea/>` 👇
// drag and drop into textarea,
// or click the adjacent div
new Shubox("#shubox--textarea", {
  key: "7e1e4069",
  cdn: "http://codepens.shubox.io",
  clickable: "#shubox--click-to-upload",
  uploadingTemplate: "![Uploading {{name}}...]()",
  successTemplate: "![{{name}}]({{s3url}})",
  textBehavior: "append"
});
              
            
!
999px

Console