Index: trunk/phase3/docs/uidesign/monospace.html |
— | — | @@ -0,0 +1,49 @@ |
| 2 | +<!DOCTYPE html> |
| 3 | +<html lang="en" dir="ltr" xmlns="http://www.w3.org/1999/xhtml"> |
| 4 | +<head> |
| 5 | + <style type="text/css"> |
| 6 | + pre { |
| 7 | + border: 1px dashed #AAA; |
| 8 | + background-color: #E0E0E0; |
| 9 | + color: #000000; |
| 10 | + margin: 1em 10%; |
| 11 | + padding: 0.5em; |
| 12 | + } |
| 13 | + </style> |
| 14 | +</head> |
| 15 | +<body> |
| 16 | +<p> |
| 17 | +This page let you test the rendering font-family declaration for monospaced fonts. TODO: add some references here :-) |
| 18 | +</p> |
| 19 | + |
| 20 | +<pre style=' |
| 21 | +font-family: monospace;'> |
| 22 | +font-family: monospace; |
| 23 | +</pre> |
| 24 | + |
| 25 | +<pre style=' |
| 26 | +font-family: "Courier New";'> |
| 27 | +font-family: "Courier New"; |
| 28 | +</pre> |
| 29 | + |
| 30 | +<pre style=' |
| 31 | +font-family: Courier;'> |
| 32 | +font-family: Courier; |
| 33 | +</pre> |
| 34 | + |
| 35 | + |
| 36 | +<pre style=' |
| 37 | +font-family: monospace, "Courier New";'> |
| 38 | +font-family: monospace, "Courier New"; |
| 39 | +</pre> |
| 40 | + |
| 41 | +<pre style=' |
| 42 | +font-family: monospace, Courier;'> |
| 43 | +font-family: monospace, Courier; |
| 44 | +</pre> |
| 45 | + |
| 46 | +<pre style=' |
| 47 | +font-family: monospace, Verdana;'> |
| 48 | +font-family: monospace, Verdana; |
| 49 | +</pre> |
| 50 | + |
Property changes on: trunk/phase3/docs/uidesign/monospace.html |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 51 | + native |