JSFiddle - React, Tailwind, and code Playground
by kangismet
HTML
<div class="box">
<p> Ini adalah contoh teks line-clamp, dan akan terpotong ketika lebih dari 3. baris. Coba kita lihat hasilnya seperti apa!</p>
</div>
CSS
body {
font-family:Arial, sans-serif;
font-size:14px;
align-items: center;
background: #7accc8;
display: flex;
height: 260px;
justify-content: center;
line-height: 1.5;
overflow:hidden;
}
.box {
background-color: #fff;
box-shadow: 2px 2px 10px #246756;
padding: 2em;
width: 200px;
}
.box p {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}