From: Mark Otto Date: Sat, 17 Aug 2013 21:15:14 +0000 (-0700) Subject: Update helper classes to reflect changes and mention mixins X-Git-Tag: v3.0.0~78^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=903e92a3272420de058b2fdf8d301e4d06e3188c;p=thirdparty%2Fbootstrap.git Update helper classes to reflect changes and mention mixins --- diff --git a/css.html b/css.html index 64b7b1d5e9..dd576df063 100644 --- a/css.html +++ b/css.html @@ -2070,29 +2070,29 @@ For example, <section> should be wrapped as inline. {% endhighlight %}

.pull-left

-

Float an element left

+

Float an element left with a class. Can also be used as a mixin.

{% highlight html %}
...
{% endhighlight %} {% highlight css %} .pull-left { - float: left; + float: left !important; } {% endhighlight %}

.pull-right

-

Float an element right

+

Float an element right with a class. Can also be used as a mixin.

{% highlight html %}
...
{% endhighlight %} {% highlight css %} .pull-right { - float: right; + float: right !important; } {% endhighlight %}

.clearfix

-

Clear the float on any element. Utilizes the micro clearfix as popularized by Nicolas Gallagher.

+

Clear the float on any element. Utilizes the micro clearfix as popularized by Nicolas Gallagher. Can also be used as a mixin.

{% highlight html %}
...
{% endhighlight %}