Check out "Do you speak JavaScript?" - my latest video course on advanced JavaScript.
Language APIs, Popular Concepts, Design Patterns, Advanced Techniques In the Browser

Select drop-down broken under Firefox

Firefox has problems if you use <select> element inside a container which has CSS translate applied. To fix that you have to avoid translating and apply the following hack, targeting the element only under Firefox.
@-moz-document url-prefix() {
    .your-translated-element {
        transform: none;
    }
}

P.S. the answer was found here.

If you enjoy this post, share it on Twitter, Facebook or LinkedIn. To leave a comment go here.