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;   } } 

demo


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -