■html
テキストテキストテキストテキストテキストテキストテキスト
文章内の最初の文字を1文字下げる
■css
text-indent: 1em;
2行目以降の文字を1文字下げる
■css
text-indent: -1em;
padding-left: 1em;
長いURLの表示を途中で…にする
■css
white-spce: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-webkit-text-overflow: ellipsis;
-o-text-overflow: ellipsis;