Re: [css-selectors] Tagname based substrings

05.04.2016, 20:04, "Davis, Greg" <greg.davis@pearson.com>:
> In my ongoing investigation of web components, I'm finding a place where I want to target a substring of a tagname to keep the authoring semantic. That is, when I author my tags like this:
> <x-navigation />
> <x-quiz />
> etc...
>
> I want to namespace to them so they have shared attributes like fonts, etc. I can't find a way in the documentation on attribute substrings, but might just be missing it. Is there a way to target a tagname? I'm thinking like this:
>
> *[tagname^="x-"] { ... }

This makes sense. The syntax you've provided is already used for attribute selectors, so some functional notation could probably be used instead, e.g.:

    :tag-name(^"x-") {...}

Received on Wednesday, 6 April 2016 18:18:36 UTC