> in other words, try to use relative rather than absolute units in your > (markup language attribute values or) in your stylesheet property > values for text size like *percent* instead of pixels (e.g. font-size: > 75%;). ah yes,..pixel is an example of absolute unit.
Correction lang po. "pixel" is a relative distance (length) unit, not absolute. :-) Why? Because, according to W3C's CSS syntax definition, pixel units are relative to the resolution of the viewing device (e.g. most often a computer display). If the pixel density of the output device is very different from that of a typical computer display, the user agent should rescale pixel values.
This works fine with Mozilla browsers, but not in IE. I don't know why.
By the way, to summarize, there are two types of length units in CSS, the relative and absolute. "relative" length units are:
The "absolute" length units are only useful when the physical properties of the output medium are known. The absolute units are:
For more info, please browse: http://www.w3.org/TR/REC-CSS2/syndata.html#length-units