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="text-container">
  <h2>Titulo</h2>
  <div class="description">
    Lorem ipsum dolor sit amet,   consectetur adipiscing elit. Aliquam consequat feugiat nunc nec aliquet. Suspendisse nisi odio, posuere a dapibus quis, tincidunt eu lorem. Donec ut ornare nisl, a ornare dolor. Integer vestibulum, dui eu lacinia sodales, neque ante dapibus magna, ac ornare lorem lectus tempor nunc. Duis elementum, tortor nec tincidunt suscipit, ante lacus rutrum tellus, id fermentum nulla lectus ac risus. Nulla aliquet, ligula eget finibus imperdiet, augue metus consectetur justo, ac tempus nunc lectus vitae eros. Aliquam  iaculis vestibulum ultrices.
    </div>
</div>
              
            
!

CSS

              
                .text-container {
  width: 500px;
  box-shadow: 0 0 3px;
  padding: 10px;
}

.text-container h2 {
  margin: 0 0 5px;
}

.text-container .description {
  max-width: 500px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
              
            
!

JS

              
                
              
            
!
999px

Console