Hi,
In the case of firefox one of the features of it's strict rendering mode is that it works out percentage values exactly as the spec tells it to. That is any percentage must be calculated based on the size of the containing element. Since none of the elements that contain the flash movie have been given a size this calculation doesn't give the expected result (the size of the body of the page is not the size of the viewport)
You can fix this by adding this CSS,
Code:
<style type="text/css">
html, body {
margin: 0; padding: 0;
width: 100%; height: 100%;
}
</style>
Untested
A mind once stretched by a new idea never regains its original dimensions.
- Oliver Wendell Holmes
Bookmarks