Jani Timonen wrote:
> But why it works when I apply that mysterious three pixel margin to 
> images?

MS have created some special rules, intended to protect web designers
from themselves. They rarely work as intended.

> How can I apply that margin ONLY to IE and not e.g. Firefox?

Like so:

* html .navi img {
         margin: 0 -3px;
}
...will only hit IE, but on both windows and Mac.

or like so:

@media screen {
* html .navi img {
         margin: 0 -3px;
}
}
...will only hit IE on windows. Place it after all other rules in your
stylesheet, to avoid that @media rule interfering with other @media
rules - if you have any.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to