The issue I came across has to do with the capitalization of Greek characters by the text-transform: uppercase
property.
In Greek, vowels can have acute accents, both small and caps, for instance one in Greek is ένα. In the beginning of a sentence would be Ένα. But when a word or a phrase is written in all caps then Greek grammar says that it should have no accented letters.
As it is now, CSS's text-transform: uppercase
capitalizes Greek letters preserving accents which is grammatically wrong (so ένα becomes ΈΝΑ, while it should be ΕΝΑ).
How do I make text-transform: uppercase
work properly for Greek?
lang
attribute. If this question cannot be/will not be re-opened, then I hope the OP re-posts it. – Connivance