blob: a37a38f53f24e8a7d3e983744aaf8df3280bf946 (
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
|
<html>
<head>
<style type="text/css">
.a {text-align: left}
.b {text-align: right}
.c {text-align: center}
.d {text-align: justified}
</style>
</head>
<body>
<div class="a">
left left left left left left left left left left left left left left
left left left left left left left left left left left left left left
left left left left left left left left left left left left left left
left left left left left left left left left left left left left left
left left left left left left left left left left left left left left
</div>
<div class="b">
right right right right right right right right right right right right
right right right right right right right right right right right right
right right right right right right right right right right right right
right right right right right right right right right right right right
right right right right right right right right right right right right
</div>
<div class="c">
center center center center center center center center center center center
center center center center center center center center center center center
center center center center center center center center center center center
center center center center center center center center center center center
center center center center center center center center center center center
</div>
<div class="d">
justified justified justified justified justified justified justified justified
justified justified justified justified justified justified justified justified
justified justified justified justified justified justified justified justified
justified justified justified justified justified justified justified justified
justified justified justified justified justified justified justified justified
</div>
</body>
</html>
|