blob: 949ba2f6032285e636e6ade2021ee4d6f7d80d79 [file] [log] [blame] [edit]
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
.clamp {
color: teal;
}
.inner-first-line {
color: purple;
font-weight: bold;
font-style: italic;
font-size: 1.5em;
}
</style>
<div class="clamp">
Line 1<br>
Line 2
<div>
<span class="inner-first-line">Line 3</span>
</div>
</div>