Fri, 2003-03-21 16:14
in my .css file i make the text size 10 but i cant keep this size when i change the text size from browser settings. i am using internet explorer 6.0 and "Wiew-->Text Size-->Large" makes the text large regarless of what i defined in .css file.
Do i miss something?
thank you in advance.
-ulker
Fri, 2003-03-21 18:27
#1
text size
Hi Ulker -
If you specifically set the font size to 10px, it won't resize based on your IE browser settings, at least on Windows.
Example:
<p style="font: 10px arial, sans-serif">Hello radio</p>
<p style="font: 100% arial, sans-serif">Hello radio</p>
The percentage specification will resize, but the 10px will stay constant.