오늘은 일정 글자수 이상 넘어가면 말줄임표(...) css에 대해 정리해보겠습니다. 1. 공통으로 import 해서 쓸 css 요소 정리export const getEllipsisStyles = (lines = 2): CSSProperties => { overflow: "hidden", textOverflow: "ellipsis", display: "-webkit-box", WebkitLineClamp: lines, WebkitBoxOrient: "vertical", wordBreak: "break-word" as any,} - overflow: "hidden"; 박스에서 넘쳐난 텍스트 숨기기-textOverflow: "ellipsis"; 텍스트가 잘릴 때 말줄임표(...)를 표시함- display: ..