Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Material ui text ellipsis after two line

Tags:

material-ui

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

like image 288
WebMaster Avatar asked Dec 01 '25 08:12

WebMaster


1 Answers

Update using sx:

<Typography
   sx={{
      overflow: 'hidden',
      textOverflow: 'ellipsis',
      display: '-webkit-box',
      WebkitLineClamp: '2',
      WebkitBoxOrient: 'vertical',
   }}
>
</Typography>
like image 112
David Avatar answered Dec 04 '25 22:12

David