Forum How do I...?

... select elements by language?

erelsgl
Is it possible to display / hide all elements with the "lang" attribute set to a specific value?
mikeday
Yes, for example to hide all English elements:
:lang(en) { display: none }

Or to only hide British English blockquote elements:
blockquote:lang(en-GB) { display: none }