зеркало из https://github.com/mozilla/gecko-dev.git
23 строки
429 B
HTML
23 строки
429 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
@font-face {
|
|
font-family: Ahem;
|
|
src: url(Ahem.ttf);
|
|
}
|
|
div {
|
|
font: 16px/1 Ahem;
|
|
width: 1em;
|
|
background: green;
|
|
}
|
|
</style>
|
|
<div><span></span></div>
|
|
<script>
|
|
let $div = document.querySelector('div');
|
|
let $span = document.querySelector('span');
|
|
window.onload = function () {
|
|
document.fonts.ready.then(() => {
|
|
$div.style.height = $span.getBoundingClientRect().height + 'px';
|
|
});
|
|
};
|
|
</script>
|