Closed
Bug 670098
Opened 14 years ago
Closed 14 years ago
css font-family settings are overridden by ff for form tags if not set directly on the tags
Categories
(Firefox :: General, defect)
Firefox
General
Tracking
()
RESOLVED
INVALID
People
(Reporter: daniel.schwiperich, Unassigned)
Details
Take this basic css part for example:
body {
font-family: Arial, serif;
}
text in form tags like input, button, textarea is not rendered in Arial or default serif like all other text on the website.
Workaround:
set font-family directly on the tags works:
button { font-family: Arial, serif }
The workaround does also help in Bug:
611630
FF should not overide the settings on input tags.
Tested on:
Ubuntu
Windows7
(In reply to comment #0)
> text in form tags like input, button, textarea is not rendered in Arial
Those are "replaced Elements". They don't inherit CSS properties (font-family, background, color, etc.) by default. It's intended behaviour.
-> INVALID
Status: UNCONFIRMED → RESOLVED
Closed: 14 years ago
OS: Linux → All
Hardware: x86_64 → All
Resolution: --- → INVALID
Version: 5 Branch → unspecified
You need to log in
before you can comment on or make changes to this bug.
Description
•