blob: 5675e39850dd20434be3b03a2c7ee3e7fbddc980 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.positioned {
display:block;
position: relative;
top:200px;
}
.container {
display:inline-table;
}
</style>
</head>
<body>
<span style="vertical-align: baseline">Baseline aligned</span>
<span class="container"><span class="positioned"> </span></span>
</body>
</html>
|