Closed
Bug 73704
Opened 25 years ago
Closed 25 years ago
Wrong color while using CSS. Bad processing of underline.
Categories
(Core :: DOM: CSS Object Model, defect)
Tracking
()
VERIFIED
INVALID
People
(Reporter: mixer, Assigned: jst)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; 0.8.1) Gecko/20010323
BuildID: 2001032319
Text: "This site is best viewed with InternetExplorer 4.0 or Mozilla. Browser
Netscape Navigator 4.xx is NOT supported. Tested with 1024x768x32k. Works in
lower resolutions too." is supposed to be blue and with size 66%.
.ie_note { font: 66%; color: #0000F0 }
<p align="center" class="ie_note"> This site is best viewed with
InternetExplorer 4.0 or Mozilla.<BR>
I noticed very interesting thing:
If name of style is without underlines, everything works fine. Like, in this case:
.ienote { font: 66%; color: #0000F0 }
<p align="center" class="ienote"> This site is best viewed with InternetExplorer
4.0 or Mozilla.<BR>
Kinda interesting. :)
Reproducible: Always
| Assignee | ||
Updated•25 years ago
|
| Assignee | ||
Comment 1•25 years ago
|
||
The character '_' needs to be escaped as '\_' in CSS, IE treats this
incorrectly. change your stylesheet to:
.ie\_note { font: 66%; color: #0000F0 }
and things should work in both IE and Mozilla.
Marking INVALID.
Status: UNCONFIRMED → RESOLVED
Closed: 25 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•