Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
.clamp {
border: 1px solid black;
padding: 4px;
background-color: yellow;
height: 3lh;
width: 400px;
}
#ellipsis {
display: inline-block;
width: 2em;
background-color: pink;
}
</style>
<p>The ellipsis should appear inside the pink box.</p>
<div class="clamp">
<span id="line1">Line 1</span> <br>
<span id="ellipsis">…</span>
</div>