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

              
                <h2>sGrid: Changing Cell Alignment</h2>

<div class="my-grid">
  <div class="label">
    <strong>Vertical Top</strong>
  </div>
  <div class="my-cell-1">First cell</div>
  <div class="my-cell-2 top">Second cell</div>
</div>
<div class="my-grid">
  <div class="label">
    <strong>Vertical Center</strong>
  </div>
  <div class="my-cell-1">First cell</div>
  <div class="my-cell-2 middle">Second cell</div>
</div>
<div class="my-grid">
  <div class="label">
    <strong>Vertical Bottom</strong>
  </div>
  <div class="my-cell-1">First cell</div>
  <div class="my-cell-2 bottom">Second cell</div>
</div>

<p class="p">Demo by Julian Ćwirko. <a href="http://www.sitepoint.com" target="_blank">See article</a>.</p>
              
            
!

CSS

              
                body
  text-align center
  padding 20px

/* ...sGrid loaded from:
https://codepen.io/SitePoint/pen/bf2645f66d89c4245c8691509b134155

See: https://github.com/juliancwirko/s-grid */

.my-grid
    background-color #E9E9EA
    margin-top rem-calc(50)
    center(500)
    grid()
    .label
        stack()
        text-align center
    .my-cell-1, .my-cell-2
        stack()
        padding rem-calc(10)
        background-color #D5D5D7
    @media screen and (min-width: rem-calc(breakpoints[md]))
        .my-cell-1
            height rem-calc(300)
            cell(2, 3)
        .my-cell-2
            &.top
                cell(1, 3, align: 'top')
            &.middle
                cell(1, 3, align: 'center')
            &.bottom
                cell(1, 3, align: 'bottom')

.p
  padding-top 130px
  font-size 13px
              
            
!

JS

              
                
              
            
!
999px

Console