クリエイター:コーディング備忘録ブログ

コーディング

テキストに関するcss

■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;

コメント

この記事へのコメントはありません。

RELATED

PAGE TOP