February 28, 2005

Posted by: Oscar Trelles

Category: Uncategorized

Tags:

Quick Tip for Flash on Firefox

Ever since adopting Firefox as one of my primary browsers, I’ve been noticing a particular issue more and more. It happens when setting a Flash movie to stretch vertically along the available height of the browser window, the effect being that you can only see only a portion of the movie, if viewing it in Firefox.

To solve the problem, all you need to do is insert the following CSS portion into your style sheet or HTML document header:

body, html {
height: 100%;
overflow: hidden;
}

That’s it, no sweat.

—-
Update: Here is a follow-up post.