Comment parvenir à la disposition de table sans l'aide de tables?

Au nom du progrès (et l'apprentissage) comment puis-je me débarrasser des tables à partir de mon code et d'obtenir la même mise en page?

Par exemple, voici ma table:

<table cellspacing="0px">
    <tr>
        <td>
            <img src="http://www.poltairhomes.com/images/footerlogo.png" />
        </td>
        <td id="footertext">
            <p>Poltair Homes Plc<br />Registered Office: The Old Chapel, Greenbottom, Truro, Cornwall, TR4 8QP.<br />Registered in England & Wales: 3955425<br />www.poltairhomes.com<br />[email protected]</p>
        </td>
        <td id="footertext">
            <p>Terms and Conditions | Privacy Policy | Sitemap</p>
        </td>
        <td id="footertext">
            <p>SIGN UP FOR OUR NEWSLETTER:</p>
            <img src="http://www.poltairhomes.com/images/signup(temp).png" />
        </td>
    </tr>
</table>

Et le CSS:

.footertext {
    margin: 0;
    padding:0 5px 0 5px;
    color: #AAA;
    font-size: 10px;
    font-family:Arial, Helvetica, sans-serif;
    text-align:center;
    border-left: 1px solid #CCC;
}

http://jsfiddle.net/userdude/tYjKw/

Ne pas réutiliser id les balises comme vous êtes. Ceux-ci devraient être class="footertext".
Avec le class="footertext": jsfiddle.net/userdude/tYjKw/1
Désolé, oui, c'est comment il est sur le site en ce moment (d'où le CSS ".footertext" et non pas "#footertext"... mon mauvais moment de la saisie ici... merci!

OriginalL'auteur bigtoothmedia | 2012-06-15