You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Sort Column
|
|
|
|
|
|
|
|
- order: 3
|
|
|
|
|
|
|
|
列排序
|
|
|
|
|
|
|
|
通过使用 `.col-push-*` 和 `.col-pull-*` 类就可以很容易的改变列(column)的顺序。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````html
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-18 col-push-6">.col-18 .col-push-6</div>
|
|
|
|
<div class="col-6 col-pull-18">.col-6 .col-pull-18</div>
|
|
|
|
</div>
|
|
|
|
````
|