blob: c06d4ce4ca130ee725e1aee5314dd7480b6dce50 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Text reference</title>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
.test {
font: 20px Ahem, monospace;
width: 15ch;
border: 1px solid gray;
padding: 5px;
white-space: normal;
text-align: center;
}
</style>
</head>
<p>The text on each line should be neatly centered:</p>
<div class=test>one two three<br>
four five<br>
six seven eight<br>
nine ten.<br>
un deux trois<br>
quatre cinq<br>
six sept huit<br>
neuf dix</div>
|