Inserting a br
tag within a header tag (e.g. h2
) inserts a space after the first word.
How do I remove that space as I am right-aligning the text?
e.g.
<h2>
hello
<br/>
world
</h2>
http://jsfiddle.net/4er7r/
It isn't the br
tag itself, but the returns surrounding it. They are translated to whitespace. Use this:
<h2>
hello<br/>world
</h2>
http://jsfiddle.net/4er7r/3/
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