Visualizzazione dei risultati da 1 a 3 su 3
  1. #1
    Utente di HTML.it
    Registrato dal
    Jul 1999
    Messaggi
    15

    immagine di sfondo e accessibilità

    ciao a tutti
    ho letto che non è imposibile certificare come accessibile una immagine di sfondo in una tabella
    Qualcuno di voi sa dirmi come?

    grazie tanteeeeeeeeee



    incollo il codice


    <html>
    <head>
    <title>Documento senza titolo</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>

    <body leftmargin="0" topmargin="0">
    <table width="100%" height="75%" border="0" cellpadding="0" cellspacing="0" background="immagini/0.gif" summary="tabella centrale...">
    <tr>
    <td width="45%"></td>
    <td width="55%"></td>
    </tr>
    </table>
    </body>
    </html>

  2. #2
    Utente bannato
    Registrato dal
    Dec 2003
    Messaggi
    721

    Re: immagine di sfondo e accessibilità

    <html>
    <head>
    <title>Documento senza titolo</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style>
    #tabella{
    background: url(immagini/0.gif);
    }
    </style>
    </head>

    <body leftmargin="0" topmargin="0">
    <table width="100%" height="75%" border="0" cellpadding="0" cellspacing="0" id="tabella" summary="tabella centrale...">
    <tr>
    <td width="45%"></td>
    <td width="55%"></td>
    </tr>
    </table>
    </body>
    </html>

  3. #3
    Utente di HTML.it
    Registrato dal
    Jul 1999
    Messaggi
    15

    grazie

    grazie mi sei stato di grande aiuto

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.