CSS 로 말줄임 처리 어떻게 하나요?

컴퓨터,인터넷
(22.4k 포인트)
0 투표
overflow 되면, ... <-- 말줄임 처리하고 싶습니다.

css 로 하는 방법 좀 알려주세요.

1 답변

0 투표

이런식으로 overflow:hidden 과 width 값를 정해주시면 됩니다.

 

a{
display: block;
overflow: hidden;
width: 145px;
white-space:nowrap;
text-overflow:ellipsis;
-o-text-overow: ellipsis;
-moz-binding:url(js/ellipsis.xml#ellipsis)
}

add
...