blob: be1a4ca04892182501c152d1fe550e22a701f1c3 [file]
<!DOCTYPE html>
<html>
<head>
<style>
#container {
border: 2px solid blue;
position: relative;
width: 200px;
height: 200px;
}
#border {
position: absolute;
left: 48px;
width: 100px;
height: 50px;
border: 2px solid green;
}
.spacer {
width: 50px;
height: 50px;
}
</style>
</head>
<body>
<div id="container">
<div id="border"></div>
<div id="shape-inside">
<div class="spacer" style="float:left"></div>
<div class="spacer" style="float:right"></div>
This text should wrap inside the green rectangle, and overflow should wrap
inside the blue rectangle.
</div>
</div>
</body>
</html>