How to set element height for a fixed number of lines of text

后端 未结 5 722
攒了一身酷
攒了一身酷 2021-02-05 02:54

Given some text that occupies about 10 rows, how can I resize its container to only show the first 3 rows and hide the others? Apparently this works, but I think it is not relia

5条回答
  •  遇见更好的自我
    2021-02-05 03:40

    If you are going to use this you should ensure the line-height is always 2.5ex

    .container {
      line-height: 2.5ex;
      height: 7.5ex; /* 2.5ex for each visible line */
      overflow: hidden;
    }
    

    Demo

提交回复
热议问题