blob: 160a31066df75d679526f19ce56496ecfe346f67 [file]
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 200px;
height: 200px;
}
#shape-inside {
font-size: 0;
padding: 100px;
position: relative;
}
#border {
position: absolute;
left: 98px;
top: 98px;
border: 2px solid blue;
}
.inline {
width: 100px;
height: 100px;
display: inline-block;
background-color: green;
}
</style>
</head>
<body>
Should display a green square with a blue outline.
<div id="shape-inside">
<div id="border"></div>
<div class="inline"></div><div class="inline"></div><div class="inline"></div><div class="inline"></div>
</div>
</body>
</html>