https://webruden.tistory.com/655
https://devbirdfeet.tistory.com/140
/* 한줄 */
.movieList .movie-Name {
font: bold 17px ;
width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
/* 두 줄 이상 */
.commentsList .slide-inner .commentContents{
height : 192px;
white-space: normal; /* 줄바꿈 */
overflow: hidden; /* 요소 크기 넘어가는 경우 표시 허용 여부 */
text-overflow :ellipsis; /* 넘어간 텍스트 ...로 대체 */
word-wrap : brek-word;
display: -webkit-box;
-webkit-line-clamp:12;
-webkit-box-orient:vertical;
}