mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-10 05:05:00 +00:00
37 lines
978 B
HTML
37 lines
978 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta http-equiv="Content-Style-Type" content="text/css">
|
|
<title>Reference for consistent kerning, bug 716402</title>
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: mplus;
|
|
src: url(../fonts/mplus/mplus-1p-regular-no-OT.ttf);
|
|
/* a copy of M+ with OpenType tables removed,
|
|
so only legacy 'kern' is present */
|
|
}
|
|
body {
|
|
text-rendering: optimizeLegibility;
|
|
font-family: mplus;
|
|
font-size: 15px;
|
|
background: white;
|
|
color: black;
|
|
}
|
|
.right {
|
|
text-align: right;
|
|
}
|
|
span {
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
AVAV<span>AV</span>
|
|
</div>
|
|
<div class="right">
|
|
<span>AV</span>AVAV
|
|
</div>
|
|
</body>
|