Sage
Staff Emeritus
- 12,533
- United States
- GTP_Sage
When a font size of "1" is used, and that text then gets quoted, the font size isn't proportionally smaller to the rest of the quoted text.
[edit]: Well, I've figured that adding this in your CSS would make it show up correctly in standards-compliant (Firefox/Safari) browsers:
IE doesn't understand the attribute selector, so nothing can be done for it.
I'm assuming it's because the size=1 thing inherits its size based on a user's browser font size setting, while the regular quoted text is set explicitly.Regular text. This is supposed to be small. More regular text.
[edit]: Well, I've figured that adding this in your CSS would make it show up correctly in standards-compliant (Firefox/Safari) browsers:
Code:
.smallfont font[size="1"] {
font-size: 10px;
}
IE doesn't understand the attribute selector, so nothing can be done for it.