When using Bootstrap, I typically have the following code:
<div class="col-xs-12 col-sm-6 col-lg-8"></div>
However, when working with Polymer, I could only find this:
<div class="flex-12"></div>
The issue is that the div
doesn't change its position and remains on the same horizontal line in Polymer.
What property do I need to adjust in order to change the position based on screen size?