텍스트가 길어도 알아서 잘라주는 CSS(text-overflow: ellipsis)
마스터욱
0
23
0
0
2017-06-11 22:59:53
- .ellipsis {
- display: block;
- text-overflow: ellipsis;
- white-space: nowrap;
- word-wrap: normal;
- overflow: hidden;
- }