Disclaimer: I'm not a Bootstrap to CSS expert some of the terms I use in this question might be different, feel free to comment so I can adjust it.
Based on Bootstrap's Grid System, rows contain cols that are left aligned: behaves like float: left
. Is there a way to make them right aligned? I tried adding inline float: right
styles but it didn't work.
For more details here's what I'm trying to achieve. I have 2 columns (colA and colB). On wide screens (e.g. laptops) I want to show colA on the left and colB on the right. Thanks to Bootstrap, when the screen is small enough, colA shows up on top of colB which is great.
In my case, I'm trying to show colB on top of colA on mobile (or small screens) while still keeping it on the right for wide screens. Is there a way to do this?