web_seul 2020. 12. 3. 13:22

한줄

overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;

 

여러줄

display:-webkit-box; 
word-wrap:break-word; 	//단어기준 줄바뀜
-webkit-line-clamp:3; 	//몇줄까지 나오게할지
-webkit-box-orient:vertical; 
overflow:hidden; 
text-overflow:ellipsis; 
line-height:rem(30); 
height:rem(90);		//line-height *3줄
font-size:rem(20); 
text-decoration:none;
반응형