gecko-dev/layout/reftests/font-face/order-2-ref.html

35 строки
705 B
HTML
Исходник Обычный вид История

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
@font-face {
font-family: "MarkA";
src: url(../fonts/markA.ttf);
}
@font-face {
font-family: "Mark2B";
src: url(../fonts/mark2B.ttf);
}
span.spacer {
/* to ensure the same vertical positioning of the text */
display: inline-block;
height: 3em;
width: 1em;
vertical-align: baseline;
}
</style>
</head>
<body>
<p><span style="font-family: MarkA">A</span><span style="font-family: Mark2B">B</span>C<span class="spacer"></span></p>
</body>
</html>