mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
383 B
HTML
16 lines
383 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Testcase for inline-block (bug 9458)</title>
|
|
<style type="text/css">
|
|
div { width: 2em; height: 1em; }
|
|
span { display:inline-block; vertical-align: top; width: 2em; height: 1em; background: green; }
|
|
div#after { margin-top:-1em; background: red; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span> </span></div>
|
|
<div id="after"> </div>
|
|
</body>
|
|
</html>
|