Closed
Bug 147907
Opened 23 years ago
Closed 6 years ago
<br> and
Categories
(Core :: Layout: Text and Fonts, defect, P3)
Core
Layout: Text and Fonts
Tracking
()
RESOLVED
WORKSFORME
Future
People
(Reporter: jmfee, Unassigned)
References
()
Details
Attachments
(4 files)
For Build ID: 2002052306
I have a web page which allows users to enter a series of values (16 to be
exact) layed out using div tags with style attributes. There are supposed to
be 8 inputs per line (still works), however I think the non-breaking space
before the br tag is being displayed after the br tag because the input fields
are not lined up as they should be.
Just a cosmetic thing...
<p><div style="margin-left:100px;">Add Labcodes:</div><p>
<center>
<input TYPE="text" NAME="la1" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la2" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la3" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la4" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la5" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la6" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la7" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la8" SIZE="4" MAXLENGTH="4" VALUE="">
<br>
<input TYPE="text" NAME="la9" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la10" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la11" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la12" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la13" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la14" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la15" SIZE="4" MAXLENGTH="4" VALUE="">
<input TYPE="text" NAME="la16" SIZE="4" MAXLENGTH="4" VALUE="">
</center>
Comment 1•23 years ago
|
||
Could you attach a full testcase to this bug using
http://bugzilla.mozilla.org/attachment.cgi?bugid=147907&action=enter ?
Screenshots of the actual and desired rendering would be useful as well....
You can see in DOM Inspector there are two invisible characters at the end of
the first line, while there's only one at the end on the second. Of course, this
throws the centering off mark.
There should be only one invisible character one both lines, since the
combination of ASCII cr/lf, ASCII tab and HTML line-break (br) should not add
another rendered white-space to the line.
The desired rendering was produced by putting the HTML line-break (br) tag on
the preceding line (i.e. without the ASCII cr/lf and the ASCII tab between the
non-breaking space and the HTML line-break).
Comment 4•23 years ago
|
||
To layout. The problem is that collapsing whitespace does not
collapse " " into a single space...
Assignee: Matti → attinasi
Status: UNCONFIRMED → NEW
Component: Browser-General → Layout
Ever confirmed: true
OS: Windows 2000 → All
QA Contact: imajes-qa → petersen
Hardware: PC → All
| Reporter | ||
Comment 5•23 years ago
|
||
The input boxes are normally aligned vertically, but the second row is shifted
to the right slightly
| Reporter | ||
Comment 6•23 years ago
|
||
The input boxes are lined up, (in IE & netscape, so it's not an IE proprietary
thing)
Updated•23 years ago
|
Priority: -- → P3
Target Milestone: --- → Future
Comment 7•23 years ago
|
||
.
Assignee: attinasi → font
Component: Layout → Layout: Fonts and Text
Priority: P3 → --
QA Contact: cpetersen0953 → ian
Target Milestone: Future → ---
Updated•22 years ago
|
Priority: -- → P3
Target Milestone: --- → Future
Updated•16 years ago
|
Assignee: layout.fonts-and-text → nobody
QA Contact: ian → layout.fonts-and-text
Comment 8•14 years ago
|
||
When trying it, the rendering is as in Netscape output screencast (attachment 85497 [details]).
Build info: Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20100101 Firefox/8.0
WORKSFORME?
Comment 9•6 years ago
|
||
WFM, and has done at least since comment 8, apparently.
Status: NEW → RESOLVED
Closed: 6 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•