Firefox CSS Hack
Filed in: Browser, CSS, Firefox, Hack Add comments
I usually find CSS behaving quite consistent between Firefox and Safari. But today I ran into a situation where a CSS hack or filter is needed in Firefox. I found this useful snippet of CSS working perfectly for my purpose.
blockquote, x:-moz-any-link { /* FireFox 2 hack */
padding-top: 5px;
}
blockquote, x:-moz-any-link, x:default { /* FireFox 3 hack */
padding-top: 5px;
}
Leave a Reply
You must be logged in to post a comment.