This may be because of my general CSS ignorance, but I’m getting inconsistent behavior w/ the ionic grid. basically only certain values of col-offset-x work.
For example: this code will leave h2 hugging the left side of the card, but if I change it to col-offset-50, it seems to work.
<div class ="row"> <div class="col-30 col-offset-45"> <h2 >Min: {{rangeMin}}</h2> </div> </div>
this code is the top line in a regular card div. Thanks in advance.