blob: c834b8e7a2e10db9bf843c0a7eb975b6920dc79f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head>
<style type="text/css"> p { margin: 5px 1em; width: 0; white-space: nowrap; } </style>
</head>
<body>
<!-- U+2024 is ONE DOT LEADER -->
<p>abcdef․․․abcdef</p>
<!-- U+2025 is TWO DOT LEADER -->
<p>abcdef‥‥‥abcdef</p>
<!-- U+2026 is HORIZONTAL ELLIPSIS -->
<p>abcdef………abcdef</p>
</body>
</html>
|