servo/tests/wpt/web-platform-tests/css/css-overflow/reference/webkit-line-clamp-dynamic-001-ref.html

16 lines
265 B
HTML

<!DOCTYPE html>
<style>
#container {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
font-size: 20px;
width: 10ch;
}
</style>
<body>
<div id="container">
abc def ghi jkl mno pqr stu vwx yz
123 456 789
</div>
</body>