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;
margin: 4px;
white-space: pre;
background-color: skyblue;
line-height: 1em;
}
</style>
<div class="parent">
<div class="clamp">Line 1
Line 2
Line 3<div class="float">Line A
Line B
Line C
Line D
Line E</div>
Line 4…</div>
</div>