Skip to content

Instantly share code, notes, and snippets.

@bojanpopic
Created January 24, 2014 21:42
Show Gist options
  • Save bojanpopic/8607205 to your computer and use it in GitHub Desktop.
Save bojanpopic/8607205 to your computer and use it in GitHub Desktop.
How to change height of <br>
/* probably not working in IE7- */
.form-validate br {
display: block; /* not to break flow */
margin-top: -12px; /* this actually control the height */
line-height:0; /* I'm not 100% sure this is needed */
content: " "; /* needed for chrome */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment