From dfb6a679d22e18bcac1a3ac6adea192eea2b02dc Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 23 Dec 2014 04:40:42 -0800 Subject: [PATCH] audit helpers docs: quick floats --- docs/components/helpers.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/docs/components/helpers.md b/docs/components/helpers.md index e41b017ee1..f76ff581b9 100644 --- a/docs/components/helpers.md +++ b/docs/components/helpers.md @@ -78,18 +78,13 @@ Float an element to the left or right with a class. `!important` is included to // Usage as mixins .element { - .pull-left(); + @include pull-left; } .another-element { - .pull-right(); + @include pull-right; } {% endhighlight %} -
-

Not for use in navbars

-

To align components in navbars with utility classes, use .navbar-left or .navbar-right instead. See the navbar docs for details.

-
- ### Center content blocks Set an element to `display: block;` and center via `margin`. Available as a mixin and class.