Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
#scrollContainer {
overflow: hidden;
font: 16px / 32px serif;
border: 1px solid black;
}
.parent {
overflow: hidden;
height: 4lh;
}
.clamp {
padding: 0 4px;
white-space: pre;
background-color: yellow;
}
.float {
float: left;
width: 50px;
height: 50px;
margin: 4px;
background-color: skyblue;
}
</style>
<div id="scrollContainer">
<div class="parent">
<div class="clamp">Line 1
Line 2
Line 3
Line 4…<div class="float"></div></div>
</div></div>