Skip to content

Instantly share code, notes, and snippets.

@Tenderfeel
Created August 4, 2014 08:29
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 Tenderfeel/576beb095e717de7e2f0 to your computer and use it in GitHub Desktop.
Save Tenderfeel/576beb095e717de7e2f0 to your computer and use it in GitHub Desktop.
stylus
// Nowrap
//
// テキストの折り返しを禁止して、かつ
// テキストがエリアからはみ出る場合に最後の文字の後ろに...を加えて省略する
// ブロック要素にのみ効果あり
//
// Markup:
// <p class="text_nowrap" style="width:60px">ああああああああああああああああああ</p>
//
// Styleguide 3.5
//
.text_nowrap
overflow hidden
white-space nowrap
text-overflow ellipsis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment