@include foundation-prototype-spacing;
```
-Looking for more customization? Click here for the [Sass Reference](#sass-reference)
+Looking for more customization including responsive breakpoints? Click here for the [Sass Reference](#sass-reference)
---
<div class="display-inline"></div>
<div class="display-inline-block"></div>
<div class="display-block"></div>
-<div class="display-table"></div>
-<div class="display-table-cell"></div>
```
+By default, we have just added the most used display classes. but as you would know, there are many other display classes as specified by MDN [here](https://developer.mozilla.org/en-US/docs/Web/CSS/display). If you need some of those classes, then you can add them easily through Sass variables with `$prototype-display-classes`. Sass Reference [here](#sass-reference)
+
---
## Positioning
--- /dev/null
+<!doctype html>
+<!--[if IE 9]><html class="lt-ie10" lang="en" > <![endif]-->
+<html class="no-js" lang="en" dir="ltr">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <title>Foundation for Sites Testing</title>
+ <link href="../motion-ui/dist/motion-ui.css" rel="stylesheet" />
+ <link href="../assets/css/foundation-prototype.css" rel="stylesheet" />
+ <style type="text/css">
+ .debug {
+ background: #94BBF9;
+ padding: 3px;
+ color: #000;
+ }
+
+ .floating-box {
+ display: inline-block;
+ width: 150px;
+ height: 75px;
+ margin: 10px;
+ border: 3px solid #73AD21;
+ }
+
+ .after-box {
+ border: 3px solid red;
+ }
+ </style>
+ </head>
+ <body>
+ <div class="row column">
+ <h2 class="m-t-20">Display None</h2>
+ <span>A span element.</span>
+ <span class="debug display-none">My Debugged span.</span>
+ <span>Another span element</span>
+ </div>
+ <div class="row column">
+ <h2 class="m-t-20">Display Inline</h2>
+ <span>A span element.</span>
+ <span class="debug display-inline">My Debugged span.</span>
+ <span>Another span element</span>
+ </div>
+ <div class="row column">
+ <h2 class="m-t-20">Display Block</h2>
+ <span>A span element.</span>
+ <span class="debug display-block">My Debugged span.</span>
+ <span>Another span element</span>
+ </div>
+
+ <div class="row column">
+ <h2 class="m-t-20">Display Inline Block</h2>
+ <div class="floating-box">Floating box</div>
+ <div class="floating-box">Floating box</div>
+ <div class="floating-box">Floating box</div>
+ <div class="floating-box">Floating box</div>
+ <div class="floating-box">Floating box</div>
+ <div class="floating-box">Floating box</div>
+ <div class="floating-box">Floating box</div>
+ <div class="floating-box">Floating box</div>
+ <div class="floating-box">Floating box</div>
+ <div class="floating-box">Floating box</div>
+ <div class="floating-box">Floating box</div>
+
+ <div class="after-box">Another box, after the floating boxes...</div>
+ </div>
+
+ <p class="m-y-30"> </p>
+ <script src="../assets/js/vendor.js"></script>
+ <script src="../assets/js/foundation.js"></script>
+ <script>
+ $(document).foundation();
+ </script>
+ </body>
+</html>