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

              
                <h2>Callout</h2>

<p>A callout is just an element with a <code>.callout</code> class applied. You can put any kind of content inside. Callouts have a border, padding, and margin bottom.</p>

<p>Pair the callout with the <a href="close-button.html">close button</a> component and <code>data-closable</code> attribute to create a dismissable alert box.</p>

<div class="primary callout">
  <p>Any element can be used as a close trigger, not just close button. Adding the attribute <code>data-close</code> to any element within the callout will turn it into a close trigger.</p>
  <p>When using the <code>data-closable</code> attribute, you can optionally add <a href="https://github.com/zurb/motion-ui/blob/master/docs/classes.md">Motion UI classes</a>  to the attribute to change the closing animation. If no class is added, the plugin defaults to jQuery's <code>.fadeOut()</code> function.</p>
</div>

<div class="row medium-unstack">
  <div class="column medium-4">
    <div class="alert callout" data-closable>
      <h5>This is Important!</h5>
      <p>But when you're done reading it, click the close button in the corner to dismiss this alert.</p>
      <p>I'm using the default <code>data-closable</code> parameters, and simply fade out.</p>
      <button class="close-button" aria-label="Dismiss alert" type="button" data-close>
        <span aria-hidden="true">&times;</span>
      </button>
    </div>
  </div>
  <div class="column medium-4">
    <div class="success callout" data-closable="slide-out-right">
      <h5>This a friendly message.</h5>
      <p>And when you're done with me, I can be closed using a Motion UI animation.</p>
      <button class="close-button" aria-label="Dismiss alert" type="button" data-close>
        <span aria-hidden="true">&times;</span>
      </button>
    </div>
  </div>
  <div class="column medium-4">
    <div class="success callout" data-closable="slide-out-down">
      <h5>This a friendly message.</h5>
      <p>And when you're done with me, I can be closed using a Motion UI animation.</p>
      <button class="close-button" aria-label="Dismiss alert" type="button" data-close>
        <span aria-hidden="true">&times;</span>
      </button>
    </div>
  </div>
</div>

<div class="row medium-unstack">
  <div class="column medium-4">
    <div class="alert callout" data-closable data-closable="slide-out-up">
      <h5>This is Important!</h5>
      <p>But when you're done reading it, click the close button in the corner to dismiss this alert.</p>
      <p>I'm using the default <code>data-closable</code> parameters, and simply fade out.</p>
      <button class="close-button" aria-label="Dismiss alert" type="button" data-close>
        <span aria-hidden="true">&times;</span>
      </button>
    </div>
  </div>
  <div class="column medium-4">
    <div class="success callout" data-closable="hinge-out-from-top">
      <h5>This a friendly message.</h5>
      <p>And when you're done with me, I can be closed using a Motion UI animation.</p>
      <button class="close-button" aria-label="Dismiss alert" type="button" data-close>
        <span aria-hidden="true">&times;</span>
      </button>
    </div>
  </div>
  <div class="column medium-4">
    <div class="success callout" data-closable="hinge-out-from-bottom">
      <h5>This a friendly message.</h5>
      <p>And when you're done with me, I can be closed using a Motion UI animation.</p>
      <button class="close-button" aria-label="Dismiss alert" type="button" data-close>
        <span aria-hidden="true">&times;</span>
      </button>
    </div>
  </div>
</div>

<div class="row medium-unstack">
  <div class="column medium-4">
    <div class="alert callout" data-closable data-closable="hinge-out-from-middle-x">
      <h5>This is Important!</h5>
      <p>But when you're done reading it, click the close button in the corner to dismiss this alert.</p>
      <p>I'm using the default <code>data-closable</code> parameters, and simply fade out.</p>
      <button class="close-button" aria-label="Dismiss alert" type="button" data-close>
        <span aria-hidden="true">&times;</span>
      </button>
    </div>
  </div>
  <div class="column medium-4">
    <div class="success callout" data-closable="spin-out">
      <h5>This a friendly message.</h5>
      <p>And when you're done with me, I can be closed using a Motion UI animation.</p>
      <button class="close-button" aria-label="Dismiss alert" type="button" data-close>
        <span aria-hidden="true">&times;</span>
      </button>
    </div>
  </div>
  <div class="column medium-4">
    <div class="success callout" data-closable="scale-out-up">
      <h5>This a friendly message.</h5>
      <p>And when you're done with me, I can be closed using a Motion UI animation.</p>
      <button class="close-button" aria-label="Dismiss alert" type="button" data-close>
        <span aria-hidden="true">&times;</span>
      </button>
    </div>
  </div>
</div>

              
            
!

CSS

              
                body {
  margin: 2rem;
}
              
            
!

JS

              
                $(document).foundation();


              
            
!
999px

Console