br line-height in safari and chrome leaving gap
- by Mike
In my HTML I have a div and inside the div I have different vertical spacing between lines of text. I achieve this by using breaks and defining the height, i.e. <br /><br class="height5" /> or height2 or height10 or whatever.
In my stylesheet I define it like:
br.height2 {line-height:2px;}
br.height5 {line-height:5px;}
This is…