0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[CSS]テキストの表示プロパティに関して(overflow,white-space,text-overflow)

Posted at

今回は、テキストが長い(多い)場合のCSS対応。
下記の3つを学習しました。

・overflow
・white-space
・text-overflow

#overflow
・役割
枠内に収まらない場合、はみ出し部分の表示方法のプロパティ

・一覧表

機能
visible デフォルトでそのまま
hidden 非表示にする
scroll スクロール表示される

#white-space
・役割
改行やスペースの扱いを指定するプロパティです。

・一覧表

機能
normal 自動で折り返し
nowrap 折り返しなし。まとめて表示
pre 折り返しなし。そのまま表示
pre-wrap 折り返しあり。そのまま表示
pre-line ソースで改行してる箇所は改行表示。自動折り返しあり。

・参考例

#text-overflow
・役割
 隠れた内容をどのように表示させるか
※テキストが隠れている場合のみ使用出来ます。
 ※overflow:hidden、white-space:nowrap上記も合わせて使用すると使用できる???
  
・一覧表

| 値 | 機能 |
|:-:|:-:|:-:|
|clip|末端でテキストを切り取る|
|ellipsis|...と表示する 3点リーダー |

#参考にしたサイト

https://developer.mozilla.org/ja/docs/Web/CSS/text-overflow
http://www.tohoho-web.com/css/prop/text-overflow.htm
http://www.htmq.com/css/overflow.shtml
.http://www.htmq.com/style/white-space.shtml

以上、たにーでした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?