-@-moz-document
I found a new CSS trick yesterday. If you have a block of CSS that messes up other browsers but Mozilla browsers stick it it a @-moz-document block, like:
CSS for every browser here
@-moz-document url-prefix()
{
Mozilla only CSS here
}
It would be really cool if every browser had some sort of @ rule to parse out browser specific code like this rather then using tricks.
Comments Off on -@-moz-document