The CSS language pseudo-class to allow us specify different styles for different languages, like so:
html:lang(en) .foo { ... }
However, th
Css supports attribtue selectors for all elements, not just for the html tags lang attribute. For example html like bar could be selected like a[title=Jeeha] { ... } in css.
html
lang
bar
a[title=Jeeha] { ... }
See this link for more details on partial matches and variants.