I want to style the actual items in a list box based on certain user input (adding new items, editing existing items, and then making them active/inactive). One thing I wanted to do was use bolding (for active) and italics (for edited items), by simply adding a css class to the list item in question (or taking it away as appropriate).
In Firefox, this work.
In IE7, none of it works.
Why? Is this a quirks mode thing, or did the Dark Gods of IE7, in their unspeakable and infinite madness, decree this must not be? Is Firefox violating the Geneva Convention in doing this?
Here is my css class for bolding purposes:
.active
{
color:Black;
font-weight: 600;
}
I tried "bolder" for font-weight as well, just as an attempt to be thorough. That didn't work, which I am sure will come as no surprise to more than one person here.