Closed
Bug 9690
Opened 25 years ago
Closed 25 years ago
[4.xP] Text input element should be in monospace font
Categories
(Core :: CSS Parsing and Computation, defect, P3)
Tracking
()
M15
People
(Reporter: dbaron, Assigned: pierre)
Details
Text input elements should be in a monospace font, as they are in 4.x. This
can be fixed with the following rules in ua.css (I have them in mine right
now):
input[type] { font-family: inherit; }
textarea, input, input[type=text], input[type=password] {
font-family: monospace;
}
The unfortunate complexity is due to the acceptance of input elements without a
type. I'm not sure if this is legal HTML or not, but...
Comment 1•25 years ago
|
||
Pushing off non-beta 1 issues
Updated•25 years ago
|
Summary: [4.xP]Text input element should be in monospace font → [4.xP] Text input element should be in monospace font
Comment 2•25 years ago
|
||
Why should <input type=text> be in monospace? I agree for multiline controls,
but with single line text inputs there is nothing to align with particularly,
so it would appear to me that the point is moot.
For single line text controls, IE5 uses a sans-serif proportional font, which
IMHO looks much nicer.
Assignee | ||
Comment 3•25 years ago
|
||
Reassigning peterl's bugs to myself.
Assignee | ||
Comment 4•25 years ago
|
||
Accepting peterl's bugs that have a Target Milestone
Assignee | ||
Updated•25 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → DUPLICATE
Assignee | ||
Comment 5•25 years ago
|
||
It was fixed a while back, although not exactly as shown above: textarea and
input[type=text] use 'font-family:-moz-fixed'.
Closing as duplicate of 17303.
*** This bug has been marked as a duplicate of 17303 ***
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 6•25 years ago
|
||
Verified dup of #17303
You need to log in
before you can comment on or make changes to this bug.
Description
•