Using Bootstrap is it possible to have these two different layouts depending on the viewport? I\'ve been searching about this and I\'m aware of the concepts push, pull and r
Is this what you are looking for? https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries
I use media queries all the time for that sort of things.
I can use it in two ways. first, define stylesheet:
Second, define media query in stylesheet:
@media handheld and (min-width: 20em), screen and (min-width: 20em) { ... }
Hope i didn't misunderstood your question :D