mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
36 lines
788 B
HTML
36 lines
788 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>font-variant-position fallback</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<style>
|
||
|
|
||
|
/* sups: 0-9 + - ( ) = subs: 0-9 + - ( ) */
|
||
|
@font-face {
|
||
|
font-family: subsuper;
|
||
|
src: url(../fonts/subsuper-nofeat.woff); /* FiraSans with blank omega */
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 20px;
|
||
|
font-family: subsuper, sans-serif;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
margin: 0;
|
||
|
font-size: 75px;
|
||
|
}
|
||
|
h4 { font-weight: normal }
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h4>All the subscripts and superscripts should display with variant glyphs:</h4>
|
||
|
<p>
|
||
|
<span class=sub>₃</span>C<span class=super>²</span>
|
||
|
<span class=sub>₍₃₎</span>C<span class=super>⁽²⁾</span>
|
||
|
<span class=sub>₂₁₊₃</span>C<span class=super>⁴⁵</span>
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|