Giorgio Graphics

  1. Tabelle per foeumcommunity/free

    AvatarBy -Giorgio- il 27 Nov. 2012
     
    0 Comments   44 Views
    .
    Ecco a voi il codice di una tabella centrata in Html.
    Ovviamente questo codice vale solo per forumfree-forumcommunity-blogfree nn le dovete usare per una pagina web.

    CODICE
    <table class="skin_tbl" align="center" cellpadding="0" cellspacing="0"><tr><td class="mleft_top"></td><td><table class="mback" width="100%" cellpadding="0" cellspacing="0"><tr><td class="mback_left"></td><td class="mback_center">

    <div class="mtitle">TITOLO</div>

    </td><td class="mback_right"></td></tr></table></td><td class="mright_top"></td></tr><tr><td class="mleft"></td><td><table class="mainbg" style="text-align:center;width:100%" cellpadding="4" cellspacing="1">

    <tr><!--RIGA1-->
    <td class="ww">COLONNA1</td>
    <td class="aa">COLONNA2</td>
    <td class="ww">COLONNA3</td>
    </tr>

    <tr><!--RIGA2-->
    <td class="ww">COLONNA1</td>
    <td class="aa">COLONNA2</td>
    <td class="ww">COLONNA3</td>
    </tr>

    </table></td><td class="mright"></td></tr><tr><td class="mleft_bottom"></td><td><table class="msub" width="100%" cellpadding="0" cellspacing="0"><tr><td class="msub_left"></td><td class="msub_center">&nbsp;</td><td class="msub_right"></td></tr></table></td><td class="mright_bottom"></td></tr></table><br><br>

    Dove c'è scritto Colonna n° dobbiamo mettere il contenuto della colonna.
    Dove troviamo scritto

    CODICE
    <div class="mtitle">TITOLO</div>


    il Tiolo lo dobbiamo cancellare ed mettere il nome della bachega.

    Per aggiungere nuove righe basta aggiungere,dopo la seconda riga,il seguente codice:

    CODICE
    <tr><!--RIGAn° della riga-->
    <td class="ww">COLONNA1</td>
    <td class="aa">COLONNA2</td>
    <td class="ww">COLONNA3</td>
    </tr>


    Per aggiungere nuove colonne basta mettere dietro all'ultima colonna il seguente codice:

    CODICE
    <td class="ww">COLONNA3</td>


    P.S Generalmente potete trovare il generatore di tabelle in codici html
      Share  
     
    .