html - Ionic Grid - row not taking up full width -
i trying create simple grid, 1 row , 7 columns. each column consists of div containing 1 letter of text. want these columns space evenly out across page, meant default behaviour, bunched on left. setting row's width 100% id doesn't help. appreciated.
<div class="row"> <div class="column positive-bg stable" ng-repeat="i in [1,2,3,4,5,6,7]">m</div> </div>
use col
instead column
class.
<div class="row"> <div class="col positive-bg stable" ng-repeat="i in [1,2,3,4,5,6,7]">m</div> </div>
Comments
Post a Comment