I'm trying to center content using within grids using the Shadows CSS framework.
If I start with this code -
I get a nice two column layout where each column takes up half the screen. The "Still More Content" ends up hugging the left side of each column but I would like that to be centered in each column. It looks like I should be able to add the o-layout--justify-center class to center that content. I've put that class in every div in that code and it doesn't do anything. What am I missing?
Thanks.
Matt
If I start with this code -
Code:
<div class="o-layout o-layout--wide u-grids-1 u-grids-2--m"> <div class="o-layout__item"> <div>Still More Content</div> </div> <div class="o-layout__item"> <div>Still More Content</div> </div> </div>
Thanks.
Matt
Comment