I'm wondering because I want to store something other than pre-defined keywords that are typically assigned to rel... and I just wanted to know if this is valid XHTML Strict or not.

link|improve this question

1  
@Shog9 : that question+answer gives some informations about which tags support the rel attribute -- but there is nothing there about which values that attribute can take ;; and the answers are mostly about HTML, and not about XHTML. – Pascal MARTIN Mar 16 '10 at 17:50
@Pascal: you are correct, my mistake. – Shog9 Mar 16 '10 at 18:52
feedback

1 Answer

up vote 3 down vote accepted

From what I can say, in the DTD (can be downloaded from here) :

The <link> tag is defined as :

<!ELEMENT link EMPTY>
<!ATTLIST link
  %attrs;
  charset     %Charset;      #IMPLIED
  href        %URI;          #IMPLIED
  hreflang    %LanguageCode; #IMPLIED
  type        %ContentType;  #IMPLIED
  rel         %LinkTypes;    #IMPLIED
  rev         %LinkTypes;    #IMPLIED
  media       %MediaDesc;    #IMPLIED
  >

So, the rel is defined as %LinkTypes;.


Same for the <a> tag :

<!ELEMENT a %a.content;>
<!ATTLIST a
  %attrs;
  %focus;
  charset     %Charset;      #IMPLIED
  type        %ContentType;  #IMPLIED
  name        NMTOKEN        #IMPLIED
  href        %URI;          #IMPLIED
  hreflang    %LanguageCode; #IMPLIED
  rel         %LinkTypes;    #IMPLIED
  rev         %LinkTypes;    #IMPLIED
  shape       %Shape;        "rect"
  coords      %Coords;       #IMPLIED
  >


And the entity LinkTypes is defined as :

<!ENTITY % LinkTypes "CDATA">
    <!-- space-separated list of link types -->


So, trying to make things short :

  • The rel attribute is supported, but only for <a> and <link> tags
  • The rel attribute can contain CDATA -- i.e. it's not restricted to a specific list of words.
link|improve this answer
PERFECTO! thank u =] – qodeninja Mar 16 '10 at 17:54
You're welcome :-) – Pascal MARTIN Mar 16 '10 at 17:59
I'm trying to to the same the next question is, is this a good practice? save data in the rel attribute?? – nahum Jan 5 at 19:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.