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

              
                <form>
  <input placeholder="Username" type="text">
  <input placeholder="Password" type="password">
	<textarea placeholder="Description"></textarea>
</form> 

              
            
!

CSS

              
                form {
	text-align: center;
	width: 50%;
	margin: 0 auto;
}

input,
textarea {
	display: block;
	width: 100%;
	border: 0;
	padding: 10px 5px;
  background: white no-repeat;
	
	/*
	* IMPORTANT PART HERE
	*/
	
  /* 2 imgs : 1px gray line (normal state) AND 2px green line (focus state) */
	background-image: linear-gradient(to bottom, #1abc9c, #1abc9c), linear-gradient(to bottom, silver, silver);
	/* sizes for the 2 images (default state) */
	background-size: 0 2px, 100% 1px;
	/* positions for the 2 images. Change both "50%" to "0%" or "100%" and tri again */
	background-position: 50% 100%, 50% 100%;

	/* animation solely on background-size */
  transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);

}

input:focus,
textarea:focus{
  /* sizes for the 2 images (focus state) */
	background-size: 100% 2px, 100% 1px;
	outline: none;
}
              
            
!

JS

              
                /*
We use two background gradients, for two states. Each background visibility is ruled by the background-size.

- default state: 1px silver bottom background is visible.
- focus state: 2px color bottom background is visible

The size of the background is animated with "transition". The y-size remains always the same. The x-size is changed.

- default state
  - silver background is 100% wide
  - color background is 0% wide.
- focus state
  - silver background is 0% wide
	- color background is 100% wide



Animation is solely on the background-size, making it grow from 0 to 100% on focus and shrink back to 0% on blur.

The grow/shrink goes from the center to the borders.
To make it go from/to a side, replace the "50% 100%" with "0 100%" or "100% 100%" (for left or right respectively) on the background-position.

This works on <input> and on <textarea> alike.
*/
              
            
!
999px

Console