38 lines
666 B
HTML
38 lines
666 B
HTML
<!DOCTYPE html>
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
|
<style>
|
|
.spacer {
|
|
background: lightgray;
|
|
block-size: 20px;
|
|
}
|
|
.target {
|
|
font: 100px/1 Ahem;
|
|
}
|
|
|
|
.height > .target,
|
|
.min-height > .target {
|
|
height: 120px;
|
|
}
|
|
|
|
.max-height > .target {
|
|
height: 10px;
|
|
}
|
|
</style>
|
|
|
|
<div class="height">
|
|
<div class="spacer"></div>
|
|
<div class="target">ApÉx</div>
|
|
<div class="spacer"></div>
|
|
</div>
|
|
|
|
<div class="min-height">
|
|
<div class="spacer"></div>
|
|
<div class="target">ApÉx</div>
|
|
<div class="spacer"></div>
|
|
</div>
|
|
|
|
<div class="max-height">
|
|
<div class="spacer"></div>
|
|
<div class="target">ApÉx</div>
|
|
<div class="spacer"></div>
|
|
</div>
|