1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<html>
<head>
<style type="text/css"> p { margin: 5px 1em; width: 0; white-space: nowrap; } </style>
</head>
<body>
<p>01234567890123456789</p>
<p>01,234,567,890,123,456,789</p>
<p>01.234.567.890.123.456.789</p>
<p>-01234567890123456789</p>
<p>-01,234,567,890,123,456,789</p>
<p>-01.234.567.890.123.456.789</p>
<p>+01234567890123456789</p>
<p>+01,234,567,890,123,456,789</p>
<p>+01.234.567.890.123.456.789</p>
<p>±01234567890123456789</p>
<p>±01,234,567,890,123,456,789</p>
<p>±01.234.567.890.123.456.789</p>
</body>
</html>
|