Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/10/2010, 12:11
Avatar de Ribon
Ribon
 
Fecha de Ingreso: septiembre-2010
Ubicación: El firmamento
Mensajes: 487
Antigüedad: 13 años, 7 meses
Puntos: 91
Respuesta: validación XHTML 1.0 Transitional

Poque en la definicion para el elemento anchor (<a>) en el DTD de XHTML 1.0 transitional el atributo alt no está permitido
Código DTD:
Ver original
  1. <!ELEMENT a %a.content;>
  2. <!ATTLIST a
  3.   %attrs;
  4.   %focus;
  5.   charset     %Charset;      #IMPLIED
  6.   type        %ContentType;  #IMPLIED
  7.   name        NMTOKEN        #IMPLIED
  8.   href        %URI;          #IMPLIED
  9.   hreflang    %LanguageCode; #IMPLIED
  10.   rel         %LinkTypes;    #IMPLIED
  11.   rev         %LinkTypes;    #IMPLIED
  12.   shape       %Shape;        "rect"
  13.   coords      %Coords;       #IMPLIED
  14.   target      %FrameTarget;  #IMPLIED
  15.   >