Closed
Bug 20884
Opened 25 years ago
Closed 25 years ago
right property doesn't work
Categories
(Core :: CSS Parsing and Computation, defect, P3)
Tracking
()
VERIFIED
INVALID
People
(Reporter: daniel.polack, Assigned: pierre)
Details
Attachments
(1 file)
(deleted),
text/html
|
Details |
in M11 the right property doesn't work. ex:
#BorderRight {
position: absolute;
right: 0;
top: 0;
width: 5px;
height: 100%;
background: url("border.right") rgb(224,224,224) repeat-y;
}
Comment 1•25 years ago
|
||
I don't see a bug here. If right is given a value of '0', then per CSS2 spec
10.3.7, values are over-constrained. In this case, the right value is ignored
and the equation is solved for that value. This would position the element at
the left edge of its containing block (HTML). I have attached a testcase with
similar style to that described above.
Comment 2•25 years ago
|
||
Assignee | ||
Updated•25 years ago
|
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → INVALID
Assignee | ||
Comment 3•25 years ago
|
||
Correct. Another problem is that the containing is empty: setting a width and
height for the body element can help you get what you are looking for.
Closed as invalid.
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 4•25 years ago
|
||
Verified invalid
You need to log in
before you can comment on or make changes to this bug.
Description
•