blob: 43202e4d97f03c1694176f5c6a95b4a48e938a96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<style>
#container {
width: 20ch;
text-wrap: balance;
}
span:hover {
color: red;
}
</style>
<div id="container">
123 567 901 345 789
123 567 901 345 789
123 567 901 345 789
999
</div>
|