Closed
Bug 1826
Opened 26 years ago
Closed 26 years ago
Padding does not work in text field form elements
Categories
(Core :: DOM: Core & HTML, defect, P2)
Tracking
()
People
(Reporter: angus, Assigned: pollmann)
Details
IE and NGlayout render padding on the left side of textfields slightly
differently -- IE has no padding on the left, and we have what looks to be about
3-5 pixels. The workaround is for the developer to explicitly state what the
padding should be:
<input type="text" style="width: 200px; padding-left:10px;" name="realname">
Or, to simulate the default IE behavior:
<input type="text" style="width: 200px; padding-left:0px;" name="realname">
etc. Currently we are not honoring the padding declarations. See this example in
IE5 for a working example.
Original reporter: irutherf@paranet.com
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•26 years ago
|
||
I'll check it out, thanks!
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → DUPLICATE
Status: RESOLVED → VERIFIED
Component: HTMLFrames → Form Submission
QA Contact: 4137
Marked verified as duplicate; cpratt if you disagree please reopen as angus no
longer works here.
Updated•6 years ago
|
Component: HTML: Form Submission → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•