Closed
Bug 15979
Opened 26 years ago
Closed 26 years ago
(CSS:) text-decoration: overline isn't shown
Categories
(Core :: Layout, defect, P3)
Tracking
()
VERIFIED
INVALID
People
(Reporter: rootrider, Assigned: troy)
References
()
Details
Attachments
(1 file)
431 bytes,
text/html
|
Details |
(Using Mozilla 5 M9 (M10 crashes on startup))
Using the following embedded CSS, a link with class="novisit" doesn't show the
overline on hover.
A.novisit:link { text-decoration: none; font-weight: normal; }
A.novisit:visited { text-decoration: none; font-weight: normal; }
A.novisit:active { text-decoration: overline; font-weight: normal; }
A.novisit:hover { text-decoration: overline; font-weight: normal; color:
#000080; }
A.novisit:hover { text-decoration: underline; font-weight: normal; color:
#000080; }
FYI, here's an example link that *should* change color, and become underlined
and overlined.
<a href="http://www.betanews.com/print.php3" class="novisit">BetaNews</a>
Hope this helps...
--
Joel D. Parker, DevEdge HTML Champion
http://www.Internet-Lynx.com/
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → INVALID
The 5th rule should override the 4th, so the text-decoration should be underline
on :hover. The only time it should be overline is when the link matches :active
but *not* :hover, which is when you click the mouse over the link and then move
it off. This is exactly what happens.
Marking invalid.
Updated•26 years ago
|
QA Contact: petersen → chrisd
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 3•26 years ago
|
||
Verifying invalid.
Comment hidden (collapsed) |
You need to log in
before you can comment on or make changes to this bug.
Description
•