I'm trying to access some alternative character glyphs using this font at the moment.
The font's character subs are named like this: "A.alt", "A.alt1", "B.alt" etc. so they don't have a unicode to go after.
I found this but when using Inspect Element the CSS-property just returns a "Unknown Property Name"-error. Any other way to do this?
<html>
<meta charset="ISO-8859-1">
<title>Glyph-test</title>
<style>
h1 {
font-family: Baron neue;
}
h1 span.A-alt {
font-variant-alternates: character-variant(A.alt);
}
</style>
<h1>Testing alternative <span class="A-alt">A</span></h1>
</html>