• User

    blockquote e chiusura del paragrafo

    CIAO

    In HTML, ho scritto:

    
    <p>Cicerone disse:
       <blockquote>
          - Ama come se più tardi dovessi odiare.
          - La ragione dovrebbe dominare e l'appetito obbedire.
       </blockquote>
    Invece, Livio disse:
       <blockquote>
          - L'animo umano è fin troppo pronto a scusare le proprie colpe.
          - Le decisioni impetuose e audaci in un primo momento riempiono di entusiasmo, ma poi sono difficili a seguirsi
            disastrose nei risultati.
          - Fate mostra di essere pronti alla guerra e avrete la pace.
       </blockquote>
    </p>
    
    

    Quando vado a convalidare, tramite il servizio Validator , mi scrive:

    
    End tag for element "P" which is not open.
     
    The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem. 
    
    

    Come mai?

    GRAZIE

    CIAO


  • User Attivo

    La sintassi usata è sbagliata.
    All'interno di blockquote va inserito un paragrafo, non direttamente il testo.
    [HTML]
    <blockquote>
    <p>Testo della citazione</p>
    </blockquote>
    [/HTML]


  • User Attivo

    Un altro errore dovrebbe essere quello di includere il tag blockquote dentro a un tag p, che può contenere solo tag inline.