]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Added overflow classes to docs.
authorharry <harmanmanchanda182@gmail.com>
Mon, 6 Feb 2017 16:29:56 +0000 (21:59 +0530)
committerharry <harmanmanchanda182@gmail.com>
Mon, 6 Feb 2017 16:29:56 +0000 (21:59 +0530)
docs/pages/prototyping.md

index fb7b933ba8b39df3e9810ca2c8ab1f71ad07b290..fff309648580539d53440cb17fcc65c5703481e1 100644 (file)
@@ -151,6 +151,34 @@ Positioning is very helpful and basic need for complex layouts.
 <div class="position-fixed-bottom"></div>
 ``` 
 
+## Overflow
+
+These overflow classes helps you to clip content, render scrollbars or simply just display the content when it overflows its block level container. 
+
+#### All sides 
+
+```html
+<div class="overflow-visible"></div>
+<div class="overflow-hidden"></div>
+<div class="overflow-scroll"></div>
+``` 
+
+#### Horizontal Axis
+
+```html
+<div class="overflow-x-visible"></div>
+<div class="overflow-x-hidden"></div>
+<div class="overflow-x-scroll"></div>
+``` 
+
+#### Vertical Axis
+
+```html
+<div class="overflow-y-visible"></div>
+<div class="overflow-y-hidden"></div>
+<div class="overflow-y-scroll"></div>
+``` 
+
 ---
 
 ## Image Replacement