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

              
                <h3>One does not simply <code>display: inline;</code> to button</h3>

<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur ut quam elit. Nulla facilisi. Aliquam auctor vehicula dolor quis accumsan. <a href="#meh"><button>Phasellus tristique dui augue, at rutrum libero sagittis eget. Phasellus odio orci, placerat non sem ac, lacinia tincidunt sapien. <strong>(Should not wrap like this.)</strong></button></a> Curabitur at convallis orci. Mauris ac congue neque, vel tincidunt neque.</p>

<p>Pellentesque rutrum arcu at est cursus, vel dictum quam pharetra. Suspendisse a nunc eu risus fermentum blandit vitae at dui. Suspendisse finibus felis ac consectetur tristique. Curabitur ornare, sem nec accumsan rhoncus, ligula libero rutrum felis, a sollicitudin ante massa in tortor. Cras sed nisl scelerisque, imperdiet dui nec, iaculis lectus. Nullam dapibus posuere justo quis tincidunt. <a href="#meh">Nam vel quam ut risus porttitor consectetur ut eu dolor. Curabitur quis est vel ipsum suscipit feugiat eu porttitor ligula. Quisque consectetur congue lacinia. <strong>(Should wrap like this!)</strong></a> Suspendisse quis dui imperdiet, facilisis ligula sit amet, auctor quam. Aliquam gravida feugiat lectus non egestas. Sed luctus sem a tincidunt auctor. Sed eget ullamcorper massa, nec dapibus quam. Sed ut pellentesque ipsum, sed mollis leo. Aliquam quis maximus quam. Nulla semper tortor sit amet iaculis tempus.</p>
              
            
!

CSS

              
                body { margin: auto; width: clamp(10rem, 50vw, 40rem); }
// use `<a href>` as parent to inherit all native styles
a > button { all: inherit; }
// you can keep throwing `display: inline !important;` all you want, it will not help you
              
            
!

JS

              
                document.querySelectorAll('a').forEach(element => {
    element.onclick = (event) => event.preventDefault()
})
              
            
!
999px

Console