Newsletter margin/padding emulation using tables

by Ben Clayton

HTML

<table width="100%">
    <tr height=10>
        <td colspan=3></td>
    </tr>
    <tr>
        <td width=10>&nbsp;</td>
        <td bgcolor=#FFF0F0 align=center>
            <table>
                <tr height=10>
                    <td colspan=3></td>
                </tr>
                <tr>
                    <td width=10>&nbsp;</td>
                    <td> <font size=3>Hello</font>

                    </td>
                    <td width=10>&nbsp;</td>
                </tr>
                <tr height=10>
                    <td colspan=3></td>
                </tr>
            </table>
        </td>
        <td width=10>&nbsp;</td>
    </tr>
    <tr height=10>
        <td colspan=3></td>
    </tr>
</table>

<table>
    <tr height=10>
        <td colspan=3></td>
    </tr>
    <tr>
        <td width=10>&nbsp;</td>
        <td bgcolor=#FFF0F0>
            <table>
                <tr height=10>
                    <td colspan=3></td>
                </tr>
                <tr>
                    <td width=10>&nbsp;</td>
                    <td> <font size=3>Hello</font>

                    </td>
                    <td width=10>&nbsp;</td>
                </tr>
                <tr height=10>
                    <td colspan=3></td>
                </tr>
            </table>
        </td>
        <td width=10>&nbsp;</td>
    </tr>
    <tr height=10>
        <td colspan=3></td>
    </tr>
</table>

<table width="100%">
    <tr height=10>
        <td colspan=3></td>
    </tr>
    <tr>
        <td width=10>&nbsp;</td>
        <td bgcolor=#FFF0F0 align=center>
            <table>
                <tr height=10>
                    <td colspan=3></td>
                </tr>
                <tr>
                    <td width=10>&nbsp;</td>
                    <td>
                        <table>
                            <tr height=10>
                                <td colspan=3></td>
                            </tr>
                            <tr>
               ...

CSS

body {
    padding:0;
    margin:0;
}