 | | From: | Swifty | | Subject: | ? | | Date: | Tue, 4 Jan 2005 11:57:18 +0000 (UTC) |
|
|
 | I've come across a webpage which used the sequence
| This test is really tiny I didn't even know about before, but is there something I can add to my "notiny.css" style sheet that will defeat the font reduction?
Incidentally, the resultant font on my display is significantly smaller than my defined minimum font size of 9 pixels. Does this qualify as a bug? If the opinion is that it does qualify as a bug then I'll produce a sample page somewhere people can get at it, and submit it.
-- Steve Swift http://www.ringers.org.uk (Personal Webpage) http://hedgehog.farn.uk.ibm.com (IBM Internal - restricted)
|
|
 | | From: | Tim Altman | | Subject: | Re: ? | | Date: | Wed, 05 Jan 2005 10:32:04 +0100 |
|
|
 | On Tue, 4 Jan 2005 11:57:18 +0000 (UTC), Swifty wrote:
>I've come across a webpage which used the sequence >This test is really tiny
[...]
>Incidentally, the resultant font on my display is significantly smaller >than my defined minimum font size of 9 pixels. Does this qualify as a bug?
Yes, and it's a known one.
-- Tim Altman Core QA Opera Software
| |
|
 | | From: | Eik | | Subject: | Re: ? | | Date: | Tue, 04 Jan 2005 12:04:47 -0000 |
|
|
 | On Tue, 4 Jan 2005 11:57:18 +0000 (UTC), Swifty wrote:
> I've come across a webpage which used the sequence > This test is really tiny
SMALL text is usually a little smaller but that example uses nested SMALL elements so it's making the small text smaller.
> is there something I can add > to my "notiny.css" style sheet that will defeat the font reduction?
To stop it completely just use:
small {font-size:1em !important}
To only affect nested tags, use this instead:
small small {font-size:1em !important}
-- Using Opera's revolutionary e-mail client: http://www.opera.com/m2/
| |
|
 | | From: | Swifty | | Subject: | Re: ? | | Date: | Thu, 6 Jan 2005 08:10:48 +0000 (UTC) |
|
|
 | > small {font-size:1em !important}
That was just right for me. Thank you. I can sense that I'll be doing some of this CSS stuff by myself in the near future.
-- Steve Swift http://www.ringers.org.uk (Personal Webpage) http://hedgehog.farn.uk.ibm.com (IBM Internal - restricted)
|
|