Closed
Bug 70896
Opened 24 years ago
Closed 24 years ago
Style sheet: text-decoration: none does not operate
Categories
(Core :: CSS Parsing and Computation, defect)
Tracking
()
People
(Reporter: randy.d, Assigned: pierre)
References
()
Details
Mozilla/5.0 (Windows; U; Win98; en-US; 0.8) Gecko/20010215
http://cgi.ebay.com/aw-cgi/eBayISAPI.dll?MfcISAPICommand=ViewItem&item=565491521
and http://www.pgr-gem.com/color/search.html
both using local style call and with a <SPAN class=xxxx> call.
<style>SPAN.NOUNDERLINE { text-decoration: none; }</style>
<a hfef="URL"><span CLASS=NOUNDERLINE> Text for the Link </span></a>
The linked text is underlined.
Comment 2•24 years ago
|
||
Your code should look like this:
<style>.NOUNDERLINE { text-decoration: none; }</style>
<a href="URL"><span CLASS="NOUNDERLINE"> Text for the Link </span></a>
Does this work for you? (Sorry, I don't have Mozilla here for testing.)
Comment 3•24 years ago
|
||
*** This bug has been marked as a duplicate of 59183 ***
Status: UNCONFIRMED → RESOLVED
Closed: 24 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•