haikuwebkit/Tools/LayoutReloaded/test/relative-siblings.html

19 lines
507 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0px;
padding: 8px;
}
</style>
</head>
<body>
<div style="position: relative; right: 8px; width: 30px; height: 70px;"></div>
<div style="position: relative; right: 8px; top: 100px; width: 30px; height: 20px;"></div>
<div style="position: relative; left: 8px; width: 30px; height: 30px;"></div>
<div style="width: 130px; height: 40px;"></div>
<div style="position: relative; left: 8px; top: 20px; width: 30px; height: 50px;"></div>
</body>
</html>