[css] 문자 자르기

[css] 문자 자르기 updated_at: 2024-01-30 17:10

css를 이용한 글자 자르기

css

.ellipsis{
	white-space:nowrap;
	text-overflow:ellipsis;		/* IE, Safari */
	-o-text-overflow:ellipsis;		/* Opera under 10.7 */
	overflow:hidden;			/* "overflow" value must be different from "visible" */ 
	-moz-binding: url('ellipsis.xml#ellipsis');
}

html

<div class="ellipsis"> 문자 aaa bbb ccc ddd eee fff ggg hhh iii jjj kkk </div>

See the Pen css 이미지 중앙정렬 by younghyeong ryu (@wangta69) on CodePen.

Table of contents 목차

평점을 남겨주세요
평점 : 5.0
총 투표수 : 1

질문 및 답글