Pagina 1 di 2 1 2 ultimoultimo
Visualizzazione dei risultati da 1 a 10 su 12
  1. #1
    Utente di HTML.it
    Registrato dal
    Apr 2001
    Messaggi
    214

    problemi con W3C - come risolverli??

    come in oggetto....come sistemarli...

    sopratutto, qual'è la sintassi esatta per l'immagini di fondo? (background)



    Line 224, column 49: there is no attribute "BACKGROUND"

    <td width="77%" background="imgs/sf.gif" valign="top">

    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.



    Line 229, column 179: there is no attribute "BORDERCOLOR"

    ...rder-collapse: collapse" bordercolor="#111111" width="100%">



    Line 233, column 97: document type does not allow element "LINK" here

    ...css" rel="stylesheet" type="text/css">

    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

    One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
    Forum....grazie di esistere...non sono bravo ma ho tanta voglia di imparare........

  2. #2
    Tutti gli attributi si stile vanno eliminati dal markup e inseriti in un file css esterno.


    Nel css, poi, per settare, ad esempio, il colore di sfondo della pagina, si farà
    codice:
    body {
       background: #069;
    }

  3. #3
    Utente di HTML.it
    Registrato dal
    Apr 2001
    Messaggi
    214

    ...backgroung

    ...non è un colore ma una immagine...

    sotto il testo del css..come correggerlo??

    non so molto di css...

    ed infine per la validazione dei css, mi da questo errore:

    Line: 5 Context : .effect:hover
    hand is not a cursor value : hand

    Line: 11 Context : .effectia:hover
    hand is not a cursor value : hand

    Line: 17 Context : .tit
    Parse Error -

    Line: 20 Context : .art
    Parse Error -



    grazie per l'ultima dritta...così imparo qualcosa!
    Forum....grazie di esistere...non sono bravo ma ho tanta voglia di imparare........

  4. #4
    codice:
    <td width="77%" style="background-image:url(imgs/sf.gif);" valign="top">
    FEDERIX.IT - [Pillola] GRAFICA DEI FORM

    ...ho ancora quella forza che ti serve, quando dici "Si comincia!"

  5. #5
    Utente di HTML.it
    Registrato dal
    Apr 2001
    Messaggi
    214

    ...ed infine..

    l'immagine non sulla pagine in generale, ma dentro una tabella specifica...

    come si fa?
    Forum....grazie di esistere...non sono bravo ma ho tanta voglia di imparare........

  6. #6
    Allora:

    1. Per immagini di sfondo background: url(nomeimmagine.gif);

    2. Il cursore con la manina è cursor: pointer; (non hand);

    3. L'altro errore non lo capisco: è qualcosa che ha a che fare con le classi .tit e .art.

  7. #7
    Utente di HTML.it
    Registrato dal
    Apr 2001
    Messaggi
    214

    x federix..

    ma il codice non va nei css...ma nel body...?

    ...ed in questo caso a me serve inserirlo nei css...
    Forum....grazie di esistere...non sono bravo ma ho tanta voglia di imparare........

  8. #8
    Originariamente inviato da Federix
    codice:
    <td width="77%" style="background-image:url(imgs/sf.gif);" valign="top">
    Ma stavamo appena dicendo di mettere gli attributi di stile in un css esterno...

  9. #9
    Utente di HTML.it
    Registrato dal
    Apr 2001
    Messaggi
    214

    come dicevo poco fa...

    cari maestri dell' HTML....l'immagine deve trovarsi dentrouna tabella e non sullo sfondo generale
    Forum....grazie di esistere...non sono bravo ma ho tanta voglia di imparare........

  10. #10
    Alla tabella aggiungi una classe (io qui ho usato class="main") e poi, nel css, metti:

    table.main {
    background: url(imma.gif);
    }

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.