Created
March 18, 2014 10:00
-
-
Save hiloki/9617029 to your computer and use it in GitHub Desktop.
Untitled
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
.title { | |
border: 1px solid red; | |
/display: block; /* BlockまたはInline Block */ | |
max-width: 200px; /* 省略しない最大幅を決める。%指定なども可 */ | |
} | |
.ellipsis { | |
/overflow: hidden; /* 最大幅を超える分を隠す */ | |
/text-overflow: ellipsis; /* 省略されるときに末尾を ... に変える */ | |
/white-space: nowrap; /* テキストの折り返しを防ぐ */ | |
} |
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
<h2 class="title ellipsis"> | |
これはながいながいながいタイトルです。とてもながいながいタイトルです。</h2> | |
<h2 class="title ellipsis">タイトルです。</h2> |
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
// alert('Hello world!'); |
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
{"view":"split-vertical","fontsize":"140","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment