What\'s the best way to add vertical whitespace using Twitter\'s Bootstrap?
For example, let\'s say that I am creating a landing page and would like a bit (100px) o
I merely created a div class using various heights i.e.
The CSS is:
.divider-10 { width:100%; min-height:1px; margin-top:10px; margin-bottom:10px; display:inline-block; position:relative; }
Just create a divider class for what ever heights are needed.