servo/tests/ref/inline_block_with_margin_a.html

25 lines
586 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
@font-face {
font-family: 'ahem';
src: url(fonts/ahem/ahem.ttf);
}
body {
margin: 0;
font-family: 'ahem';
font-size: 100px;
line-height: 1;
}
span {
display: inline-block;
color: yellow;
margin-left: 50px;
}
</style>
</head>
<body>
<div><span>X X</span></div>
</body>
</html>