blob: e042319cb33229017d37bc867bb9f80adab64371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!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.woff); /* FiraSans with blank omega */
}
body {
margin: 20px;
font-family: subsuper, sans-serif;
}
p {
margin: 10px;
font-size: 50px;
line-height: 2;
width: -moz-fit-content;
background: black;
}
h4 { font-weight: normal; }
span.sub { font-variant-position: sub; }
span.super { font-variant-position: super; }
</style>
</head>
<body>
<h4>The black bars should NOT be the same length</h4>
<p> XXXXXXXXXX </p>
<p> X<span class=sub>XXXXXXXX</span>X </p>
<p> X<span class=super>XXXXXXXX</span>X </p>
</body>
</html>
|