Closed
Bug 223124
Opened 21 years ago
Closed 21 years ago
CSS classes not being recognized when defined in a common manner. See details.
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 223122
People
(Reporter: robert.brindell, Assigned: bugzilla)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031007 Firebird/0.7
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031007 Firebird/0.7
When a class is defined as:
.small,.small:input, .small:textarea, .small:select
{
font-family: verdana;
font-size: 8pt;
}
Code such as <td class="small"> will not render properly. if the class is
broken out as such:
.small
{
font-family: verdana;
font-size: 8pt;
}
.small:input
{
font-family: verdana;
font-size: 8pt;
}
Then they will all be rendered properly.
Reproducible: Always
Steps to Reproduce:
1. Create a web page that links an external CSS class definition.
2. Create an external CSS class definition using the definitions shown in
'details' section.
3. Use the definitions mentioned in the 'details' section (<td
class="small">test</td>) on the page and view them in the Firebird browser.
Actual Results:
The defined class "small" will not render.
Expected Results:
Render the style as defined above.
My computer has only common configurations that would not affect this discussion.
Comment 1•21 years ago
|
||
*** This bug has been marked as a duplicate of 223122 ***
Status: UNCONFIRMED → RESOLVED
Closed: 21 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•