-
Notifications
You must be signed in to change notification settings - Fork 756
Open
Labels
Description
This would resolve #1008.
It would be very nice to have the ability to do a regex selector on a tag, like this:
/**Match all h1-h6 tags**/
/^h\d$/i{
font-family: "Roboto", sans-serif;
}
/**Match all ruby elements**/
/^r[a-z]+/i{
font-weight: bold;
}and so on. Better yet, allow regex to be used in classes, etc.
/**Match sections with ids of card-1, card-2, etc.**/
section#/card-\d+/i{
padding: 10px;
border-radius: 10px;
background: white;
}This would be an extremely helpful feature of CSS that would help developers write lean, beautiful code and I would love to see it added to the spec!
nico3333fr, pmaxhogan, tobireif, Adimvicky, MatteoGauthier and 11 moreCrissov and bleperpmaxhogan, oceangravity, ashfahan, WillsterJohnson and georgetzlp