gecko-dev/servo/tests/html/font_stretch.html

25 строки
338 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
font-size: 36pt;
font-family: "Helvetica Neue";
font-weight: bold;
font-style: normal;
}
#a {
font-stretch: normal;
}
#b {
font-stretch: condensed;
}
</style>
</head>
<body>
<div id=a>Felis silvestris catus</div>
<div id=b>Felis silvestris catus</div>
</body>
</html>