Visualizzazione risultati 1 fino 16 di 16

Discussione: Problema con W3C

  1. #1
    Guest

    Predefinito Problema con W3C

    'giorno...

    Dunque, io ho messo:

    <table width="800" height="259" border="0" align="center" background="immagini/nome immagine.gif">
    <tr>
    <td valign="top"><div id="testo">
    <br>
    <br>
    Benvenuti ecc. ecc.
    e il validatore mi dice:

    Sample: <table> proprietary attribute "height"

    BAD <table height="100%">
    GOOD <table style="height: 100%">
    e anche:

    <td> style="background-image: url(abc.gif)"

    Il problema del background non riesco a capirlo e quello della tabella so solo che devo PER FORZA inserire il valore di altezza (e anche di larghezza).
    Come risolvo? :sadOLD:

  2. #2
    Guest

    Predefinito

    Se vuoi validare il tuo codice, il w3c ti blocca su alcune cose della vecchia sintassi html 3 oppure 4.

    In questo caso ti sta dicendo che non puoi usare l'altezza (o il bg) al di fuori degli stili: il codice che ti dà (style...), è uno stile inline, cioè un "pezzo di css" messo direttamente nel codice e non come foglio stile. Semplicemente segui le sue indicazioni

    ciao,
    Marco

    P.S.: ti consiglio di usare anche <br/> (che è xhtml) invece di <br> (che è vecchio html 4)

  3. #3
    Guest

    Predefinito

    si infatti, fai cm ti ha suggerito il validatore

    cià!

  4. #4
    Guest

    Predefinito

    Però non posso mettere la larghezza in %, perché siccome è un'immagine ha le misure definite...

  5. #5
    Guest

    Predefinito

    no va be quello credo sia un esempio, tu puoi mettere anche le misure in pixel
    basta aggiungere px al posto di %

    cià!

  6. #6
    Guest

    Predefinito

    no, ci avevo già provato e non me lo validava...

  7. #7
    Guest

    Predefinito

    a me lo da valido

    cià!

  8. #8
    Guest

    Predefinito

    sob

    ho messo

    <table width="800" height="259px" border="0" align="center" background="immagini/xxx.gif">

    e il validatore:

    ... attribute "..." has invalid value "..."
    Cause:

    Each attribute belongs to a category. And for some types, their values are restricted. Here are the categories of attributes:

    1. CDATA is a sequence of characters
    2. ID and NAME must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").
    3. IDREF and IDREFS are references to ID tokens defined by other attributes. IDREF is a single token and IDREFS is a space-separated list of tokens.
    4. NUMBER tokens must contain at least one digit ([0-9])

    To find the type of the attribute, search the tag name (here) and check its definition.
    Samples:

    <a> attribute "id" has invalid value "567"
    The attribute ID is of type ID. As described above, it should begin with a letter

    BAD <a id="567" href="/index.html">
    GOOD <a id="n567" href="/index.html">

  9. #9
    Guest

    Predefinito

    prova così

    Codice HTML:
    <table width="800" style=" height: 259; background-image: URL(immagini/nome immagine.gif);" border="0" align="center">
    cià!

  10. #10
    L'avatar di makpaolo
    makpaolo non è connesso Utente storico
    Data registrazione
    08-05-2003
    Residenza
    Brescia ( prov.)
    Messaggi
    9,399

    Predefinito

    anziche
    <table width="800" height="259px" border="0" align="center" background="immagini/xxx.gif">
    prova a mettere
    <table style="width:800px;height:259px;background-image:url(immagini/xxx.gif);" align="center">
    Se smetti di imparare e evolverti sei morto dentro

  11. #11
    Guest

    Predefinito

    Grazie, adesso va... grazie grazie grazie...

    Non è escluso che vi rompa ancora le scatole...

  12. #12
    Guest

    Predefinito

    CVD... :neutral:

    Ho provato a fare la stessa cosa con Paola's Web mettendo gli attributi nella forma che mi avete indicato.
    Non riesco però a centrare la tabella che contiene il menù...
    Se qualche anima pia, in un attimo da buttare, mi dà un'occhiata, gliene sarò eternamente grata...

  13. #13
    Guest

    Predefinito

    metti la tabella all'interno di:
    <div align="center">
    tabella
    </div>


    Ciaooooo!!!!!

  14. #14
    Guest

    Predefinito

    oppure su <table> metti align="center"


    cià!

  15. #15
    Guest

    Predefinito

    Citazione Originalmente inviato da debug
    metti la tabella all'interno di:
    <div align="center">
    tabella
    </div>


    Ciaooooo!!!!!
    E' già così...



    sitoutile, niente! :-(

  16. #16
    Guest

    Predefinito

    scusa ma nn è già centrata? il menù a me sembra già al centro o no?

    cià!

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •