I’m trying to switch the column of two div
‘s using twitter bootstrap in mobile/tablet view like this jsfiddle that applicable to all major browser in desktop and mobile phones (android and ios)
How to do this using twitter bootstrap or CSS only? I tried the JSfiddle mention above, but it’s not working in mobile phones and need to configure some setting in firefox to be able run it.
3
Answers
using
media
rulesIn which phones / browsers didn’t it work?
What if you add some vendor specific properties? Seems to work here:
http://jsfiddle.net/ivanchaer/8vy8khnq/2/
HTML
CSS
The issue caused because display: flex won’t support in major browsers.
Insted of this you can achieve easily by using the float property in media queries.
enter link description here