Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
.parent {
padding: 4px;
background-color: yellow;
}
.clamp {
font: 16px / 32px serif;
white-space: pre;
overflow: clip;
}
.float {
float: left;
width: 50px;
height: 50px;
margin: 4px;
margin-bottom: 0;
background-color: skyblue;
}
</style>
<div class="parent">
<div class="clamp">Line 1
Line 2
Line 3
Line 4…<div class="float"></div></div>
</div>