Is it possible to use a CSS wildcard in the middle of an attribute selector?

Viewed 20347

I have some generated CSS and would like to use some css that could select e.g.

<p id="loremIndexIpsum">Text in here</p>

Using on lorem and Ipsum disregarding Index. Something similar to:

p#lorem*Ipsum
{
}

I can generate some more classes, but wondered if this was possible with CSS.

1 Answers
Related