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

              
                <label for="inp" class="inp">
  <input type="text" id="inp" placeholder="&nbsp;">
  <span class="label">Label</span>
  <svg width="120px" height="26px" viewBox="0 0 120 26">
    <path d="M0,25 C21,25 46,25 74,25 C102,25 118,25 120,25"></path>
  </svg>
  <span class="border"></span>
</label>

<!-- dribbble -->
<a class="dribbble" href="https://dribbble.com/shots/4836189-Input" target="_blank"><span class="fa fa-dribbble"></span></a>




              
            
!

CSS

              
                html, body
  height: 100%

body
  display: grid
  font-family: Avenir
  -webkit-text-size-adjust: 100%
  -webkit-font-smoothing: antialiased
  overflow: hidden
  
*
  box-sizing: border-box
  
.inp
  position: relative
  margin: auto
  width: 100%
  max-width: 280px
  .label
    position: absolute
    top: 16px
    left: 0
    font-size: 16px
    color: #9098A9
    font-weight: 500
    transform-origin: 0 0
    transition: all .2s ease
  svg
    position: absolute
    left: 0
    bottom: 0
    height: 26px
    fill: none
    path
      stroke: #C8CCD4
      stroke-width: 2
      d
        transition: all .2s ease
  .border
    position: absolute
    bottom: 0
    left: 120px
    height: 2px
    right: 0
    background #C8CCD4
  input
    -webkit-appearance: none
    width: 100%
    border: 0
    font-family: inherit
    padding: 12px 0
    height: 48px
    font-size: 16px
    font-weight: 500
    background: none
    border-radius: 0
    color: #223254
    transition: all .15s ease
    &:not(:placeholder-shown)
      + span
        color #5A667F
        transform: translateY(-26px) scale(.75)
    &:focus
      background: none
      outline: none
      + span
        color #0077FF
        transform: translateY(-26px) scale(.75)
        transition-delay: .1s
        + svg
          path
            stroke: #0077FF
            animation: elasticInput .4s ease forwards
          + .border
            background: #0077FF  
      
@keyframes elasticInput
  50%
    d: path("M2,2 C21,17 46,25 74,25 C102,25 118,25 120,25")
    
//dribbble 
.dribbble
  position: fixed
  right: 20px
  bottom: 15px
  transition: all .2s ease
  span
    font-size: 28px
    color: #9098A9
              
            
!

JS

              
                
              
            
!
999px

Console