Skip to content

Instantly share code, notes, and snippets.

@nicollecastrog
Created September 6, 2014 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicollecastrog/787a3de538d20056490d to your computer and use it in GitHub Desktop.
Save nicollecastrog/787a3de538d20056490d to your computer and use it in GitHub Desktop.
A Pen by Nico Castro.
<body>
<p>
The text in this paragraph DOES wrap: this is the DEFAULT behaviour. This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
</p>
<p class="no-wrap">
The text in this paragraph does NOT wrap: this is NOT the default behaviour. This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
</p>
</body>
.no-wrap {
white-space: nowrap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment