The specification for HTML5 emphasizes the handling of each link created within a link element as separate entities. This means that multiple link elements with `rel="stylesheet"` are treated independently, considering them as distinct external resources affected by their own attributes. Additionally, when a single link element contains a `rel` attribute set to `next stylesheet`, it serves both as a hyperlink and an external resource link, with each keyword being influenced differently by other attributes like media or title.
Each link created for a link element is handled separately. For instance, if there are two link elements with
rel="stylesheet"
, they each count as a separate external resource, and each is affected by its own attributes independently. Similarly, if a single link element has arel
attribute with the valuenext stylesheet
, it creates both a hyperlink (for the next keyword) and an external resource link (for the stylesheet keyword), and they are affected by other attributes (such as media or title) differently.
http://dev.w3.org/html5/spec/Overview.html#attr-link-rel
What would be a use case for using rel="next stylesheet"
in the same <link>
tag?