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> 

more ionic grid.


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -