Link to home
Start Free TrialLog in
Avatar of kenabbott
kenabbottFlag for United Kingdom of Great Britain and Northern Ireland

asked on

<p> and <br> line spacing

Hi

With css how do I change the default line spacing for the <p> and <br> tags

Many thanks
ASKER CERTIFIED SOLUTION
Avatar of Eternal_Student
Eternal_Student
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
or

br {line-height:8px}
Avatar of kenabbott

ASKER

So what are the default settings for the 2 tags?
Im not sure about that [good question] but I do know that IE and FF can set them differently, more so the br tag because it also depends on the font-size, family, etc.
"So what are the default settings for the 2 tags?"

All browsers have different default settings for each element.
Yes I appreciate the differnces with different browsers, I was just curious what the the defaults were for IE and FF for examples
The line-height property will accept a value to control the spacing between baselines of text. ... Percentage values are relative to the element's font size.

With that said i don't think paragraph line-height will be different between IE and FF if it is not set. But the <br/> tag certainly is a different height just like inconsistencies between margins on form elements. So playing with the line-height value is one way of causing both browsers to behave the same way.

This is usually the very first line I use on my stylesheet:

*{margin:0; padding:0}

That ^ will select everything and set its' default margin and padding to zero so both browsers are equal. The only other inconsistencies I run into are usually genuine bugs or line-height issues to with padding/margin calculations [especially on complex menus or form buttons].
You'd probably have to ask someone that works for Microsoft or Mozilla to find out what the default is.  Of course, you could download the Mozilla source code and find out what Firefox's default is on your own, but I don't think you want to do that. ;)

It's possible that IE and FF use the same default line-height, but not guaranteed.  Unfortunately I don't know what they are.