25 lines
404 B
HTML
25 lines
404 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
@import "support/MetricsTestFont.css";
|
|
|
|
.spacer {
|
|
background: lightgray;
|
|
block-size: 100px;
|
|
}
|
|
.target, .float {
|
|
font: 50px/1 MetricsTestFont;
|
|
}
|
|
.float {
|
|
float: left;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: yellow;
|
|
}
|
|
.clear { clear: both; }
|
|
</style>
|
|
<div class="float">F<br>F</div>
|
|
<div class="target">
|
|
ApÉx
|
|
<br class="clear">
|
|
</div>
|
|
<div class="spacer"></div>
|