blob: 20a8ae08c0e56f6a5fc7f2b244b51134aa97c864 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<style>
div {
line-height: 20px;
}
</style>
<p>The numbers 1, 2 and 3 below should be in ascending order, from top to bottom, with no overlap.</p>
<div>
2
<span style="vertical-align: 20px;">
1
<div>3</div>
4
<div>5</div>
6
<div>7</div>
8
</span>
</div>
|