Last active
April 11, 2017 03:25
-
-
Save imfycc/f6a0206b354013756fc5 to your computer and use it in GitHub Desktop.
css换行与不换行
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
| 自动换行 | |
| div{ | |
| white-space: pre-wrap; | |
| word-wrap: break-word; | |
| word-break: break-word; | |
| } | |
| 强迫不换行 | |
| div{ | |
| white-space:nowrap; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment