Skip to content

Instantly share code, notes, and snippets.

@imfycc
Last active April 11, 2017 03:25
Show Gist options
  • Save imfycc/f6a0206b354013756fc5 to your computer and use it in GitHub Desktop.
Save imfycc/f6a0206b354013756fc5 to your computer and use it in GitHub Desktop.
css换行与不换行
自动换行
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