Currently, I am working on creating a straightforward grid consisting of one row and seven columns. Each column holds a div with a single letter of text inside. My intention is for these columns to evenly space out across the page by default, but unfortunately, they are all clustered together on the left side. Even after attempting to set the row's width to 100% using an id, the issue persists. I would greatly appreciate any assistance or guidance on how to resolve this.
<div class="row">
<div class="column positive-bg stable" ng-repeat="i in [1,2,3,4,5,6,7]">M</div>
</div>