mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
23 lines
682 B
HTML
23 lines
682 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#webkit-line-clamp">
|
|
<link rel="match" href="reference/webkit-line-clamp-036-ref.html">
|
|
<meta name="assert" content="text-overflow: ellipsis shouldn't apply within a -webkit-line-clamp context.">
|
|
<style>
|
|
.clamp {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
width: 10ch;
|
|
font: 16px / 32px monospace;
|
|
background-color: yellow;
|
|
padding: 4px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
</style>
|
|
<div class="clamp">
|
|
supercalifragilisticexpialidocious
|
|
supercalifragilisticexpialidocious
|
|
supercalifragilisticexpialidocious
|
|
</div>
|