Material ui text ellipsis after two line
How can I ellipsis a text after two line in material ui? Here https://material-ui.com/system/display/#text-overflow show for single line
stackoverflow.com
<Typography
variant="body2" // ์ํ๋ Typo
sx={{
WebkitLineClamp: "2", // ์ํ๋ ๋งํผ์ ์ค
overflow: "hidden",
textOverflow: "ellipsis",
display: "-webkit-box",
WebkitBoxOrient: "vertical",
}}
>
์ปจํ
์ธ ๋ด์ฉ
</Typography>
โจโจโจ