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

              
                <div class="Marquee">
  <div class="Marquee-content">
    <div class="Marquee-tag">1</div>
    <div class="Marquee-tag">2</div>
    <div class="Marquee-tag">3</div>
    <div class="Marquee-tag">1</div>
    <div class="Marquee-tag">2</div>
    <div class="Marquee-tag">3</div>
    <div class="Marquee-tag">1</div>
    <div class="Marquee-tag">2</div>
    <div class="Marquee-tag">3</div>
    <div class="Marquee-tag">1</div>
    <div class="Marquee-tag">2</div>
    <div class="Marquee-tag">3</div>
  </div>
</div>
              
            
!

CSS

              
                @import 'nib'

body
  height 100vh
  width 100vw
  display flex
  align-items center
  justify-content center
  background white
  font-size 16px
  font-family 'proxima nova', 'open sans', 'Helvetica', sans-serif
  
.Marquee
  background linear-gradient(-135deg, #008ed9, #8b00db);
  width 85vw
  box-sizing border-box
  padding 1em
  color white
  font-weight 200
  display flex
  align-items center
  overflow hidden

  &-content
    display flex
    animation marquee 10s linear infinite running
    &:hover
      animation-play-state paused

  &-tag
    width 200px
    margin 0 .5em
    padding .5em
    background rgba(255, 255, 255, .1)
    display inline-flex
    align-items center
    justify-content center
    transition all .2s ease
    &:hover
      background rgba(255, 255, 255, .5)
      transform scale(1.1)
      cursor pointer
  
    
    
@keyframes marquee
  0%
    transform translateX(0)
  100%
    transform translate(-50%)
              
            
!

JS

              
                
              
            
!
999px

Console