responsive design - Bootstrap grid - missing Margin in Phone-mode -
hi i'm using twitter bootstrap's grid+responsive.
every thing ok. when reduce browsers width phone mode, spans arrange vertical, ok. there no space between them now, expect them margin-top or bottom of gutterwidth.
any ideas how can archieve it?
you can achieve using media query..
for example,
@media (max-width: 767px) { div[class*="span"] { margin-bottom:2px; } }
Comments
Post a Comment