blob: 9fa770ad7e76c809b8e590bfa5ec6e44f3105095 [file] [log] [blame]
<!DOCTYPE html>
<style>
#container {
text-indent: 100px;
width: 200px;
border: 1px solid black;
}
#float {
float: left;
width: 50px;
height: 50px;
background: green;
}
</style>
<div id="container">
<div id="float"></div>
Some text that should not overlap the edge of the container.
</div>