Skip to navigation
How to switch right to left column in the col-xs-12 bootstrap size
16.03.16
it is not possible to reorder the columns .col-*-12 with the push/pull helper classes you can use the below hack: @media (max-width: 767px) { .row.reorder-xs { -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); direction: rtl; } .row.reorder-xs > [class*="col-"] { -webkit-transform: rotate(-180deg); -moz-transform: rotate(-180deg); -ms-transform: rotate(-180deg); -o-transform: rotate(-180deg); transform: rotate(-180deg); direction: ltr; } }
https://gist.github.com/umanda/81ec6d3b7c3af53163d6
Reply
Anonymous
Information Epoch 1740161565
When in doubt, use brute force.
Home
Notebook
Contact us