I frequently find myself writing CSS like this:
h1, h2, h3, h4, h5, h6{
...
}
It annoys me that I have to type h1, h2, h3, h4, h5, h6 so much. But it gets worse:
article h1, article h2, article h3, article h4, article h5, article h6{
...
}
or even
article h1.bold:hover, article h2.bold:hover, article h3.bold:hover, article h4.bold:hover, article h5.bold:hover, article h6.bold:hover{
...
}
Wouldn't it be nice to just type
or
or
article :heading.bold:hover{
...
}
:heading just matches h1-h6. It would be easy to implement for browser vendors and easy to polyfill. But extremely helpful.
Having a heading selector like :heading would be AWESOME!
I frequently find myself writing CSS like this:
It annoys me that I have to type
h1, h2, h3, h4, h5, h6so much. But it gets worse:or even
Wouldn't it be nice to just type
or
or
:headingjust matches h1-h6. It would be easy to implement for browser vendors and easy to polyfill. But extremely helpful.Having a heading selector like
:headingwould be AWESOME!