1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-13 20:08:34 +00:00
Files
UXP/layout/reftests/margin-collapsing/inline-block-horizontal-1.html
T

22 lines
302 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
font-family: sans-serif;
}
#ib1 {
display: inline-block;
margin-right: 20px;
}
#ib2 {
display: inline-block;
margin-left: 10px;
}
</style>
</head>
<body>
<div><span id="ib1">Hello</span><span id="ib2">Kitty</span></div>
</body>
</html>