summaryrefslogtreecommitdiff
path: root/docs/uidesign/monospace.html
blob: f2b988e21956ef9460932751f7a4e9956cfc3c30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
	<style>
		pre {
			border: 1px dashed #AAA;
			background-color: #E0E0E0;
			color: #000000;
			margin: 1em 10%;
			padding: 0.5em;
		}
		blockquote {
			font-style: italic;
		}
	</style>
</head>
<body>
<p>
This page let you test the rendering font-family declaration for monospaced fonts. TODO: add some references here :-)
</p>
<p>
Erwin Dokter had the following explanation on <a href="https://bugzilla.wikimedia.org/33496">Bugzilla #33496</a>:
</p>
<blockquote>
By default, a (Windows) browser has it's default font-sizes set at 16px for
serif and sans-serif, and 13px for monospace. Except in IE, where you cannot
set any font-sizes... it uses 16px for all fonts.
<br/>
Vector has a base font-size of 0.8em, and most browsers *correctly* scale down
all fonts, including the monospace font, accordingly. So monospace is shown at
0.8 x 13px = 10px (which is perceived as 'too small'). But when you assign any
font besides just "monospace", those browsers will no longer treat it as
monospace and use 0.8 x 16px = 13px instead.
</blockquote>
<p>
Below are various rendering:
</p>

<pre style='
font-family: monospace;'>
font-family: monospace;
</pre>

<pre style='
font-family: "Courier New";'>
font-family: "Courier New";
</pre>

<pre style='
font-family: Courier;'>
font-family: Courier;
</pre>

<pre style='
font-family: monospace, monospace;'>
font-family: monospace, monospace;
</pre>

<pre style='
font-family: monospace, "Courier New";'>
font-family: monospace, "Courier New";
</pre>

<pre style='
font-family: monospace, Courier;'>
font-family: monospace, Courier;
</pre>

<pre style='
font-family: monospace, Verdana;'>
font-family: monospace, Verdana;
</pre>

<pre style='
font-family: monospace, DOESNOTEXISTREALLY;'>
font-family: monospace, DOESNOTEXISTREALLY;
</pre>