I use <br /> to do a line break in an aspx file.
This gives me more line height than I want. Meaning too much blank space between the lines. How do I insert or skip just half of a line height in aspx or html?
BTW, I am using an asp:Label control on the following line if this info can be useful.
Try something like:
CSS
.half-line {
line-height: .5em;
}
and then add <p class="half-line"> </p> instead of your <br> tag
Or instead of using <br> tags, you could just set the margin-bottom on your <p> tags smaller.
<SUP> </SUP>
Superscript adds a half-line above the line it is in.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With