Skip to content

Instantly share code, notes, and snippets.

@ace4gi
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save ace4gi/6230b07907f58d67c226 to your computer and use it in GitHub Desktop.

Select an option

Save ace4gi/6230b07907f58d67c226 to your computer and use it in GitHub Desktop.
단어 자르기/정렬
/* 단어잘림 테스트 */
word-break: break-all; /* 모든 단어 짤림 */
word-wrap: break-word; /* 화면을 긴 단어 짤림(예:url) */
/* 한글/영문 단어 유지하면서 양쪽 정렬하기 */
/* ie8 확인했음 */
word-break:keep-all; text-align:justify;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment