프리랜서 웹디자이너 웹퍼블리셔RELATION

RELATION 로고

홈페이지 소스

[CSS] 줄바꿈, URL 줄바꿈을 위한 CSS

2019.01.04
북마크 [출처 이동]    작성자 정보
.dont-break-out {

/* These are technically the same, but use both */
overflow-wrap: break-word;
word-wrap: break-word;

-ms-word-break: break-all;
/* This is the dangerous one in WebKit, as it breaks things wherever */
word-break: break-all;
/* Instead use this non-standard one: */
word-break: break-word;

/* Adds a hyphen where the word breaks, if supported (No Blink) */
-ms-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;

}


관련문서 : http://tobyyun.tumblr.com/post/35200812018/url-%EC%A4%84%EB%B0%94%EA%BF%88%EC%9D%84-%EC%9C%84%ED%95%9C-css%EC%86%8D%EC%84%B1

이 포스트 공유하기

전체목록