How i can change the columns in bootstrap

balaji

For example if my columns view is for large screen

------1-(col-lg-4)---------|--------2-(col-lg-4)-------|----3-(col-lg-4)--------

I need to change the view of the column in bootstrap as per my order. How i can change using the col function?

---------1(col-md-6)-----------|----------3(col-md-6)----------

--------------------2(col-md-12)--------------------

Lance

First, a warning: Bootstrap isn't the most robust for moving content around responsively. If you can drop old browser support, you will have more reliable support from Flexbox.

I believe this is what you are looking for:

<div class="row">
   <div class="col-lg-4 col-sm-6"> <span>col 1</span> </div>
   <div class="col-lg-4 col-lg-push-4 col-sm-6"> <span>col 3</span> </div>
   <div class="col-lg-4 col-lg-pull-4 col-sm-12"> <span>col 2</span> </div>
</div>

ご覧のとおり、ドキュメント内のコードの順序は異なりますが、上記でマップした順序になります。

https://jsfiddle.net/4jmzm9wm/

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

SQL - How can i change rows to columns? (PIVOT)

分類Dev

Bootstrap table striped: how can I change the stripe step?

分類Dev

How can I change the size of the font in Bootstrap 4 with just CSS?

分類Dev

Bootstrap 4: How can I change the color of checkbox ? Simple way

分類Dev

how to change bootstrap columns while width is 320

分類Dev

How can I bring my (bootstrap) elements to the bottom of the columns without position absolute?

分類Dev

Show bootstrap alert with condition (Vue.js): how can I access this variable in order to change its value?

分類Dev

Bootstrap, less, how to change number of @grid-columns for nested rows?

分類Dev

How can I convert rows to columns in SQL

分類Dev

How can I centralize bootstrap tooltip call?

分類Dev

How can I load Bootstrap tabs content?

分類Dev

How can I change a bool to a 0 or a 1, can I cast it?

分類Dev

How can I change wallpaper automatically?

分類Dev

how can I change the position of html text?

分類Dev

How can I change the text color with jQuery?

分類Dev

How i can change font to UITextView in swift?

分類Dev

How can i change visible relativelayout on android?

分類Dev

How can I change Intellisense tooltip colors

分類Dev

How can i change bar width of progressbar?

分類Dev

How can I change mapbox annotation view?

分類Dev

How can I change AutoTextSize (Maximum & Minimum)

分類Dev

How can I change # by code using interpolation

分類Dev

How I can create a dynamically label change?

分類Dev

How Can I change the property of components of React?

分類Dev

How can I change the default gateway?

分類Dev

How can I change cursor shape & size?

分類Dev

How can I change the default Nautilus Bookmarks?

分類Dev

How can I change the colors of the slices of the pie?

分類Dev

How can I change ImageButton size programmatically?

Related 関連記事

  1. 1

    SQL - How can i change rows to columns? (PIVOT)

  2. 2

    Bootstrap table striped: how can I change the stripe step?

  3. 3

    How can I change the size of the font in Bootstrap 4 with just CSS?

  4. 4

    Bootstrap 4: How can I change the color of checkbox ? Simple way

  5. 5

    how to change bootstrap columns while width is 320

  6. 6

    How can I bring my (bootstrap) elements to the bottom of the columns without position absolute?

  7. 7

    Show bootstrap alert with condition (Vue.js): how can I access this variable in order to change its value?

  8. 8

    Bootstrap, less, how to change number of @grid-columns for nested rows?

  9. 9

    How can I convert rows to columns in SQL

  10. 10

    How can I centralize bootstrap tooltip call?

  11. 11

    How can I load Bootstrap tabs content?

  12. 12

    How can I change a bool to a 0 or a 1, can I cast it?

  13. 13

    How can I change wallpaper automatically?

  14. 14

    how can I change the position of html text?

  15. 15

    How can I change the text color with jQuery?

  16. 16

    How i can change font to UITextView in swift?

  17. 17

    How can i change visible relativelayout on android?

  18. 18

    How can I change Intellisense tooltip colors

  19. 19

    How can i change bar width of progressbar?

  20. 20

    How can I change mapbox annotation view?

  21. 21

    How can I change AutoTextSize (Maximum & Minimum)

  22. 22

    How can I change # by code using interpolation

  23. 23

    How I can create a dynamically label change?

  24. 24

    How Can I change the property of components of React?

  25. 25

    How can I change the default gateway?

  26. 26

    How can I change cursor shape & size?

  27. 27

    How can I change the default Nautilus Bookmarks?

  28. 28

    How can I change the colors of the slices of the pie?

  29. 29

    How can I change ImageButton size programmatically?

ホットタグ

アーカイブ