Skip to content

Instantly share code, notes, and snippets.

@thedotmack
Created July 13, 2015 14:07
Show Gist options
  • Save thedotmack/44a1bca95cc933df84b4 to your computer and use it in GitHub Desktop.
Save thedotmack/44a1bca95cc933df84b4 to your computer and use it in GitHub Desktop.
Bootstrap 3 Typography Fix
/*
* BOOTSTRAP TYPOGRAPHY SPACING FIX
*/
h1, .h1,
h2, .h2,
h3, .h3 {
margin-bottom: @line-height-computed;
}
h4, .h4,
h5, .h5,
h6, .h6 {
margin-top: @line-height-computed;
margin-bottom: @line-height-computed;
}
p {
margin: 0 0 @line-height-computed;
}
ul,
ol {
margin-bottom: @line-height-computed;
}
dl {
margin-bottom: @line-height-computed;
}
blockquote {
padding: @line-height-computed;
margin: 0 0 @line-height-computed;
}
address {
margin-bottom: @line-height-computed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment