No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* narrow-first (mobile first) design starts 1 to a row, then increases to 2 and then a max of 3 */ | /* narrow-first (mobile first) design starts 1 to a row, then increases to 2 and then a max of 3 */ | ||
.bol { float | .bol { float:left; | ||
width 100%; | |||
box-sizing: border-box; | |||
} | |||
.bol_head {font-weight: bold;} | .bol_head {font-weight: bold;} | ||
@media all and (min-width: 28.7em){ | @media all and (min-width: 28.7em){ |
Revision as of 13:30, 11 April 2014
/* narrow-first (mobile first) design starts 1 to a row, then increases to 2 and then a max of 3 */ .bol { float:left; width 100%; box-sizing: border-box; } .bol_head {font-weight: bold;} @media all and (min-width: 28.7em){ .bol {width: 50%} } @media all and (min-width: 40.5 em){ .bol {width: 33.3333333%;} }