JSFiddle - React, Tailwind, and code Playground

by kangismet

HTML

<div class="box">
  Ini adalah contoh teks ellipsis, dan akan terpotong ketika lebih dari 200px.
</div>

CSS

body {
  font-family:Arial, sans-serif;
  font-size:14px;
  align-items: center;
  background: #9696be;
  display: flex;
  height:150px;
  justify-content: center;
  line-height: 1.5;
  overflow:hidden;
}

.box {
  background-color: #fff;
  box-shadow: 2px 2px 10px #246756;
  overflow: hidden;
  padding: 2em;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 200px;
}