Visualizzazione dei risultati da 1 a 8 su 8
  1. #1
    Utente di HTML.it
    Registrato dal
    May 2004
    Messaggi
    372

    [vb.net] Accessibilità

    ciao a tutto sto sviluppando una web application che deve essere valiadata HTML 4.01 delle W3C.
    Ho una cella con uno sfondo il quale è una immagine...non la prende.

    in più in una tabella da questo errore:
    "document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
    "

  2. #2
    Utente di HTML.it
    Registrato dal
    Sep 2002
    Messaggi
    4,127
    posta il tuo codice e il codice ke ti ha generato il compilatore..
    cmq asp .net e gli standard web, almeno nella versione 1, non vanno molto d'accordo..

  3. #3
    Utente di HTML.it
    Registrato dal
    May 2004
    Messaggi
    372
    Line 99, column 58: there is no attribute "BACKGROUND"

    ...align="left" valign="top" background="images/barra-home_r2_c9.jpg"><font colo

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute.

  4. #4
    Utente di HTML.it
    Registrato dal
    Sep 2002
    Messaggi
    4,127
    questo non è un problema di asp .net, ma di html..
    usa i css:
    style="background-image: ..."
    (dovrebbe essere questa la proprietà.. se invece mi sbaglio fai una ricerca nel forum html)

  5. #5
    Utente di HTML.it
    Registrato dal
    May 2004
    Messaggi
    372
    così non da errore nel validatore, ma non mi fa vedere l'immagine di sfondo... ho messo:

    style="background-image: images/barra-home_r2_c9.jpg"

    nel tag della cella...

    in più mi da errore in una tabella e mi da:

    Line 199, column 64: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag

    ...rder="0" width="100%" cellpadding="0" cellspacing="0"><tr><td valign="top" width="52%">

    The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.

    One possible cause for this message is that you have attempted to put a block-level element (such as "

    " or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

  6. #6
    Utente di HTML.it
    Registrato dal
    Sep 2002
    Messaggi
    4,127
    devi usare
    background-image:url('/image.gif');

    ti ho chiesto di scrivere tutto il codice, non l'errore.. non sono un mago

  7. #7
    Utente di HTML.it
    Registrato dal
    May 2004
    Messaggi
    372
    http://validator.w3.org/check?uri=ht...ose=1#line-199

    questo è l'indirizzo del validatore, dove mi da errore della tabella...


    P.S.lo sfondo ora va perfettamente, grazie!

  8. #8
    Utente di HTML.it
    Registrato dal
    Sep 2002
    Messaggi
    4,127
    prova a cambiare questo
    codice:
    <font face="Verdana" size="1">
    199:   <table border="0" width="100%" cellpadding="0" cellspacing="0">codice codice codice</table></font>
    con
    codice:
    199:   <table border="0" width="100%" cellpadding="0" cellspacing="0" style="font-face: Verdana; font-size: 1;">codice codice codice</table>
    okkio ke ho rimosso anke il </font> finale..

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.