mirror of
https://github.com/servo/servo.git
synced 2025-07-11 01:13:41 +01:00
18 lines
310 B
HTML
18 lines
310 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
#test {
|
|
width: 100px;
|
|
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
|
|
border: solid thin grey;
|
|
font: 20px 'Ahem';
|
|
line-height: 40px;
|
|
}
|
|
</style>
|
|
<p>This tests the -webkit-line-clamp property with line-height applied.</p>
|
|
<div id="test">
|
|
XXXX XXX
|
|
</div>
|