Last active
August 29, 2015 14:04
-
-
Save ace4gi/6230b07907f58d67c226 to your computer and use it in GitHub Desktop.
단어 자르기/정렬
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 단어잘림 테스트 */ | |
| 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