cssAudio - Activefile-genericCSS - ActiveGeneric - ActiveHTML - ActiveImage - ActiveJS - ActiveSVG - ActiveText - Activefile-genericVideo - ActiveLovehtmlicon-new-collectionicon-personicon-teamlog-outoctocatpop-outspinnerstartv

Pen Settings

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URL's added here will be added as <link>s in order, and before the CSS in the editor. If you link to another Pen, it will include the CSS from that Pen. If the preprocessor matches, it will attempt to combine them before processing.

+ add another resource

You're using npm packages, so we've auto-selected Babel for you here, which we require to process imports and make it all work. If you need to use a different JavaScript preprocessor, remove the packages in the npm tab.

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

Use npm Packages

We can make npm packages available for you to use in your JavaScript. We use webpack to prepare them and make them available to import. We'll also process your JavaScript with Babel.

⚠️ This feature can only be used by logged in users.

Code Indentation

     

Save Automatically?

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.

            
              <body lang=en><!-- lang required for hyphenation rules -->
<h1>Automatic Hyphenation with Element Queries</h1>
<h2>✔︎ Safari, ✔︎ Firefox, ✘ Chrome</h2>
<blockquote>
  <q>Another use case for element queries: disable hyphenation when measure is wide enough.</q>
  <cite><a href=https://twitter.com/johndjameson/status/781206718445420546 target=_blank>@johndjameson</a></cite>
</blockquote>
<p>This demo assumes you <em>don&rsquo;t</em> especially want your headlines to be hyphenated. It's good to be able to turn that feature on when an element needs it, but it would be nice to be able to turn it off as soon as an element is wide enough to display words without hyphens.</p>
<p>The styles in the CSS panel includes 1 rule that turns on hyphens for all heading tags, and then an element query for the same heading elements containing 1 rule that will disable this property on any heading more than 25 ems wide.</p>

<!-- Sample Headlines -->
<h2>Inconceivably Elongated Categorization</h2>
<h3>Incredulously Verbose Supporting Subheadline</h3>
<h4>Nonsensically Preposterous Tommyrot</h4>
            
          
!
            
              h1,h2,h3,h4,h5,h6 {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
@element h1, h2, h3, h4, h5, h6 and (min-width: 25em) {
  $this {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
  }
}
            
          
!
999px
🕑 One or more of the npm packages you are using needs to be built. You're the first person to ever need it! We're building it right now and your preview will start updating again when it's ready.
Loading ..................

Console