Select Page

The easiest way I have found to center a SWF both vertically and horizontally in HTML is using tables.

<table width="100%" height="100%" border="0">
    <tr>
        <td valign="middle" align="center">

        </td>
    </tr>
</table>