Created
January 24, 2014 21:42
-
-
Save bojanpopic/8607205 to your computer and use it in GitHub Desktop.
How to change height of <br>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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