2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-11 18:02:28 +03:00

Rename pull-*-{left|right} classes to .float-*-left and .float-*-right

This commit is contained in:
Mark Otto
2016-09-26 00:54:10 -07:00
parent 6181cf9d5d
commit 3dc4b3647c
20 changed files with 54 additions and 54 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ The following example shows how the clearfix can be used. Without the clearfix t
{% example html %}
<div class="bg-info clearfix">
<button class="btn btn-secondary pull-xs-left">Example Button pulled left</button>
<button class="btn btn-secondary pull-xs-right">Example Button pullred right</button>
<button class="btn btn-secondary float-xs-left">Example Button pulled left</button>
<button class="btn btn-secondary float-xs-right">Example Button pullred right</button>
</div>
{% endexample %}