mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
363 B
HTML
28 lines
363 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<meta charset="utf-8">
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
@font-face {
|
||
|
font-family: foo;
|
||
|
src: url(resources/svg-glyph-extents.otf);
|
||
|
}
|
||
|
body {
|
||
|
font-family: foo;
|
||
|
font-size: 10px;
|
||
|
}
|
||
|
div {
|
||
|
display: inline-block;
|
||
|
height: 100px;
|
||
|
width: 100px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>A</div>
|
||
|
<div>B</div>
|
||
|
<div>C</div>
|
||
|
<div>D</div>
|
||
|
</body>
|
||
|
</html>
|