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="scroll-container">
    <div class="scroll-content">
        <div class="item">Coming Soon</div>
        <div class="item">Coming Soon</div>
        <div class="item">Coming Soon</div>
        <div class="item">Coming Soon</div>
        <div class="item">Coming Soon</div>
    </div>
    <div class="scroll-content">
        <div class="item">Coming Soon</div>
        <div class="item">Coming Soon</div>
        <div class="item">Coming Soon</div>
        <div class="item">Coming Soon</div>
        <div class="item">Coming Soon</div>
    </div>
</div>
              
            
!

CSS

              
                /* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.scroll-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    box-sizing: border-box;
}

.scroll-content {
    display: flex;
    animation: scroll 50s linear infinite;
}

.item {
    flex: 0 0 auto;
    padding: 0 20px; /* 文字間の余白をなくす */
    font-size: 200px; /* 文字サイズを大きくする */
    line-height: 1.2; /* 文字を垂直方向に中央揃え */
    font-weight: bold; /* 文字を太くする */
    white-space: nowrap; /* 文字が折り返されないようにする */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

              
            
!

JS

              
                
              
            
!
999px

Console