aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-17 14:15:14 -0700
committerMark Otto <[email protected]>2013-08-17 14:15:14 -0700
commit903e92a3272420de058b2fdf8d301e4d06e3188c (patch)
tree9d78f8da8a90dc16ef29d19c7f6ba39cad106a4c /css.html
parent6fe1264a8088bf627fc61d639e59acc65126c41c (diff)
downloadbootstrap-903e92a3272420de058b2fdf8d301e4d06e3188c.tar.xz
bootstrap-903e92a3272420de058b2fdf8d301e4d06e3188c.zip
Update helper classes to reflect changes and mention mixins
Diffstat (limited to 'css.html')
-rw-r--r--css.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/css.html b/css.html
index 64b7b1d5e..dd576df06 100644
--- a/css.html
+++ b/css.html
@@ -2070,29 +2070,29 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
{% endhighlight %}
<h3>.pull-left</h3>
- <p>Float an element left</p>
+ <p>Float an element left with a class. Can also be used as a mixin.</p>
{% highlight html %}
<div class="pull-left">...</div>
{% endhighlight %}
{% highlight css %}
.pull-left {
- float: left;
+ float: left !important;
}
{% endhighlight %}
<h3>.pull-right</h3>
- <p>Float an element right</p>
+ <p>Float an element right with a class. Can also be used as a mixin.</p>
{% highlight html %}
<div class="pull-right">...</div>
{% endhighlight %}
{% highlight css %}
.pull-right {
- float: right;
+ float: right !important;
}
{% endhighlight %}
<h3>.clearfix</h3>
- <p>Clear the <code>float</code> on any element. Utilizes <a href="http://nicolasgallagher.com/micro-clearfix-hack/">the micro clearfix</a> as popularized by Nicolas Gallagher.</p>
+ <p>Clear the <code>float</code> on any element. Utilizes <a href="http://nicolasgallagher.com/micro-clearfix-hack/">the micro clearfix</a> as popularized by Nicolas Gallagher. Can also be used as a mixin.</p>
{% highlight html %}
<div class="clearfix">...</div>
{% endhighlight %}