blob: ca072086c415b058264e495c46cb4a692d8a0684 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!doctype html>
<html lang="zh">
<meta charset="utf-8">
<title>CSS Test Reference</title>
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
@font-face {
font-family: mplus;
src: url(/fonts/mplus-1p-regular.woff);
size-adjust: 50%; /* cause mismatch even if system-ui maps to M+ */
}
p {
font-family: Ahem, mplus, serif;
font-size: 4em;
}
</style>
<p>直</p>
|