1.

How To Avoid That Extra Whitespace Is Created Underneath My Swf?

Answer»

When using dynamic publishing and a strict HTML DOCTYPE Firefox, Safari and Opera may create a few pixels whitespace underneath your FLASH MOVIE.

To avoid this make sure that your object ELEMENT is set as a BLOCK level element, which can be achieved with the following CSS style rule:

<style type="text/css" media="screen">

object { display:block; }

</style>

When using dynamic publishing and a strict HTML DOCTYPE Firefox, Safari and Opera may create a few pixels whitespace underneath your Flash movie.

To avoid this make sure that your object element is set as a block level element, which can be achieved with the following CSS style rule:

<style type="text/css" media="screen">

object { display:block; }

</style>



Discussion

No Comment Found