JSFiddle - React, Tailwind, and code Playground

HTML

<div foo=en-baz>red</div>
<div foo=enbaz>green</div>

CSS

[foo^=en] {
    color: green;
}
[foo|=en] {
    color: red;
}