blob: ec0de542954369d95373444949090fefe3176c20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<style>
section {
width: 10ch;
}
.justify {
text-align: justify;
}
</style>
<body>
<section class="justify">
<div>1234 5678 9012</div>
<div>1234 5678 9012</div>
<div>1234 5678 9012</div>
</section>
</body>
|