Scoped Stylesheet -vs- CSS Hierarchies

Status of scoped stylesheets

Since their initial introduction, Scoped Stylesheets did not gain much traction among Web developpers. The most important problem of scoped stylesheets is that they have a big compatibility issue: they are honored as global stylesheets in browsers that don't support them, and that virtuallly includes all of them at this time.

Another problem is that they tend to promote a bad design pattern in which formatting is nested inside semantic content. While inline formatting is not to reject for small, one-shot style adjustements, using the <style> tag (and even the style attribute) in production has become less and less mainstream over time.

My call to action would be to remove the scoped stylesheet from the HTML5 specification and rely on new CSS proposals like CSS Hierarchies to provide similar features.

We can do better

Based on the fact the objective of scoped stylesheets is to apply 'local' styling, I think it's probably a better solution to extend the style attribute to accept new input, namely anything that can be found in a regular CSS rule, including concepts introduced by CSS Hierarchies.

CSS Hierarchies in action

a.hiddenLink {
    color: inherit; text-decoration: none;
    &:hover {
        color: blue; text-decoration: underline;
    }
}

article {
    padding: 20px;
    & h1 { margin-top: 0.5px; }
}

In the style attribute

<a class="hiddenLink" style="color: blue; &:hover { color: red; }">
    I'm a link who doesn't follow the traditionnal look and feel of links in the site.
</a>

<article style="& h1 { margin-top: 0px; }">...</article>

Why is it better?

This is better for many reasons:

1] Browsers that don't support CSS Hierarchies in the style tag will properly ignore the new style declaration (beside IE6 which has a bug in the way he parse the style tag).

2] Because developers tend to avoid multiline style attributes, this prevents them to have them write long local stylesheets that are contrary to the "Styling and content independance" design pattern, while giving the possibility to do so when they are requied (AJAX loading, ...).

3] It keeps the symmetry between the style attribute and the CSS rule syntaxes. Indeed, if we're going to make it possible to write nested sub-rules inside traditionnal CSS rules, there'll be pressure to enable them in the style attribute as well, and it would be logical to do so. If we do that, there'll be no need for scoped stylesheets anymore.

4] This removes the problem of @fontface / @keyframe rules that are implemented globally by browsers and can't be used properly in a scoped stylesheet. Because you can't use them as nested rules inside a CSS rule, you'll not be able to use them in a scoped style attribute either.

Call to action

1] Remove the scoped attribute from the HTML5 specification and recommands support of CSS Hierarchies instead.

2] Modify the CSS Style Attribute specification to introduce a new cascade level between "document" and "!important" that would host rules defined by the style attribute.

3] If you agree with me but can't do any of the above, maybe could you just spread the word using social media, maybe you'll end up by reaching someone else who can ;-)

Regards,
François REMY

Ce post vous a plu ? Ajoutez le dans vos favoris pour ne pas perdre de temps à le retrouver le jour où vous en aurez besoin :
Publié 07 mars 12 03:01 par FREMYCOMPANY
Classé sous : , ,

Commentaires

Pas de commentaires
Les commentaires anonymes sont désactivés

About FREMYCOMPANY

François REMY est un jeune développeur belge plein d'entrain qui traite surtout des technologies du web et de DotNet dans ses articles.


Les 10 derniers blogs postés

- Conf’SharePoint : 10 bonnes raisons pour ne pas la rater par Le petit blog de Pierre / Pierre's little blog le 05-14-2013, 02:24

- [Event] Soirée de lancement Agile .NET France à Lyon par Blog Agile/ALM de Vincent THAVONEKHAM le 05-13-2013, 01:29

- .NET / Debug : inspection de la mémoire d'applications .NET (dump ou processus live) : première livraison d'une librairie .NET par Microsoft par CoqBlog le 05-11-2013, 22:21

- SharePoint : Incompatibilité avec Internet Explorer 10 (IE10) par Blog Technique de Romelard Fabrice le 05-08-2013, 16:29

- AutoSPInstaller pour SharePoint 2013 maintenant disponible en “RTM” par Julien Chable le 05-06-2013, 23:30

- [TFS2010] A la recherche du Shelveset perdu par Blog de Jérémy Jeanson le 05-03-2013, 21:46

- .NET / Debug post-mortem : obtenir le fichier mscordacwks.dll correspondant à un dump quand on n'a plus d'accès direct à ce fichier par CoqBlog le 04-28-2013, 19:57

- [W8] Afficher un graphe par CPU dans le gestionnaire des tâches par Blog de Jérémy Jeanson le 04-28-2013, 17:48

- [WCF] Limiter proprement l’accès à vos ressources serveur par Blog de Jérémy Jeanson le 04-26-2013, 22:59

- Event : Je serai speaker à la Conf’SharePoint par Blog Technique de Romelard Fabrice le 04-26-2013, 12:00




Search

Go

Ce blog

Abonnements