mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
38 lines
520 B
HTML
38 lines
520 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div {
|
|
margin-top: 50px;
|
|
font-size: 10px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.inline-block {
|
|
display: inline-block;
|
|
height: 30px;
|
|
width: 30px;
|
|
background: blue;
|
|
}
|
|
|
|
.top .inline-block {
|
|
vertical-align: top;
|
|
}
|
|
|
|
.bottom .inline-block {
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
</style>
|
|
<body>
|
|
<div class="top">
|
|
<span>
|
|
Next
|
|
<span class="inline-block"></span>
|
|
</span>
|
|
</div>
|
|
<div class="bottom">
|
|
<span>
|
|
Next
|
|
<span class="inline-block"></span>
|
|
</span>
|
|
</div>
|
|
</body>
|