Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Fonts reference</title>
<style>
div {
margin: 10px;
font: 20px monospace;
background: yellow;
width: 10ch;
font-size-adjust: 1.0;
}
</style>
<body>
<p>Test passes if both blocks render the same, and there is no red:</p>
<div>The quick brown fox jumps over the lazy dog</div>
<div>The quick brown fox jumps over the lazy dog</div>
</body>