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

Save Automatically?

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

              
                <!--Pattern HTML-->
  <div id="pattern" class="pattern">
    <img src="https://bradfrost.github.com/this-is-responsive/patterns/images/fpo_landscape.png" class="landscape" alt="FPO Image" />
	</div>
	<!--End Pattern HTML-->
	
	<div class="container">	
		<section class="pattern-description">
			<h1>Landscape Image</h1>
			<p>This is a very basic example of a fluid image that has a landscape orientation.</p>
			<h2>Considerations</h2>
			<ul>
				<li>Loading in massive images for mobile screens isn't a good idea from a performance standpoint. Load a small image by default.</li>
				<li>Content in the large landscape image may not be legible on small screens. <a href="http://blog.cloudfour.com/a-framework-for-discussing-responsive-images-solutions/">This post</a> demonstrates how a tighter crop might be required for smaller screens.</li>
				<li>Avoid text in images, especially for fluid images whose size are subject to change.</li>
			</ul>
		</section>
		<footer role="contentinfo">   
			<div>
				<nav id="menu">
					<a href="https://bradfrost.github.com/this-is-responsive/patterns.html">&larr;More Responsive Patterns</a>
				</nav>
			</div>
		</footer>
	</div>
              
            
!

CSS

              
                .landscape {
    display: block;
    max-width: 100%;
    height: auto;
  }
              
            
!

JS

              
                
              
            
!
999px

Console