If I have 2 divs and I want to show them in different orders depending on the screen size breakpoint do I have to specify the order for each size? eg
<div class="order-xs-2 order-sm-2 order-md-2 order-lg-1 order-xl-1">
<div class="order-xs-1 order-sm-1 order-md-1 order-lg-2 order-xl-2">
When I tried this they appeared correctly in all sizes apart from xs, where they were the wrong way round so I suspect I'm doing this wrong.