Multi Line Clamp
CSS
Hard
2 views
Problem Description
Limit a paragraph to 3 lines using line clamp style.
Output Format
Print the HTML+CSS code in one block.
Constraints
Use -webkit-line-clamp with a flexible box.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode</title>
<style>
.clamp { width: 360px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
</style>
</head>
<body>
<p class='clamp'>meetcode helps you practice coding with small questions. You can learn step by step, stay consistent, and track your progress without pressure.</p>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!