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

后端 未结 5 656
攒了一身酷
攒了一身酷 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:37

    Use rem:

    .container {
        height: 3rem; /* 1rem for each visible line */
        overflow: hidden;
    }
    

提交回复
热议问题