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

              
                - for(let c = 0; c < 13; c++)
  input.gallery__select(type="radio", name='gallery-select', id=c, checked=(c===0))
.gallery
  .gallery__filler
  .gallery__filler
  - for(let i = 0; i < 13; i++)
    label.gallery__item(for=i)
      img(src=`https://source.unsplash.com/random/400x400?bear,cat&v=${Math.floor(20 * Math.random() + i)}`, alt='Something random')
              
            
!

CSS

              
                *
  box-sizing border-box
  animation  fadeIn .5s

body
  background       linear-gradient(65deg, black, black 20%, rebeccapurple)
  display          grid
  width            100vw
  padding-top      20px
  margin           0
  @media(min-width 768px)
    align-content center
    padding       20px

@keyframes fadeIn
  from
    opacity 0
  to
    opacity 1

img
  height 100%
  width 100%
  min-height 50px
  object-fit cover


.gallery
  display grid
  justify-content center
  grid-gap 20px
  grid-template-columns repeat(2, 100px) minmax(200px, 800px) repeat(2, 100px)
  grid-template-rows repeat(5, 100px)

  @media(max-width 768px)
    grid-gap 10px
    grid-template-columns repeat(auto-fit, 50px)
    grid-template-rows 300px repeat(auto-fit, 50px)

  &__filler
    grid-column span 2
    @media(max-width 768px)
      display none

  &__item
    cursor pointer
    border-radius 5px
    grid-row span 1
    grid-column span 1
    transition transform 0.1s ease-in-out

    &:hover
      transform scale(1.1) rotate(5deg)

  &__select
    display none

  for $select in (1..13)
    &__select:nth-of-type({$select})
      &:checked ~ .gallery .gallery__item:nth-of-type({$select})
        cursor default
        display grid
        align-items center
        grid-row 1 / -1
        grid-column 3

        &:hover
          transform none

        @media(max-width 768px)
          grid-row 1 / -3
          grid-column 1 / -1

              
            
!

JS

              
                // ?
              
            
!
999px

Console