Firefox 3 has introduced a new behavior in which line-height, when unset, differs from how other browsers render it. Thus, a critical section maybe render too high in that browser. Setting a global percentage doesn't work, since it's basis is different. Setting a unitless value such as "1" doesn't work either. Is there some way to normalize this dimension?
|
|
|||||
|
|
|
The computed value of Setting a unitless value such as...
...should work to normalize the spacing between browsers. If this is not working, can you provide a more-detailed description of your stylesheet? It's hard (impossible?) to get "pixel-perfect" results, but in order to get results that are as predictable as possible, I try to use a line height that produces a nice round value when multiplied by the font-size. We can't know the user agent's default font size, but 16 pixels is somewhat common.
If the user agent's starting font size is indeed 16 pixels then the line height of Also, note that if you use a percentage for the line height, it behaves differently when the value is inherited.
Starting from a base font size of 16 pixels, the line height will be 24 pixels. Within a |
||||
|
|
|
You should always "reset" styles to eliminate all browser inconsistencies with element styles. I like Eric Meyer's CSS Reset. Yahoo has one also. |
||||
|
