2
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 1 year has passed since last update.

Material-UI のTypographyで文字を枠内に収める [メモ]

Last updated at Posted at 2022-02-11

Typography が枠内に収まらない

<Typography component='p'>{message}</Typography>

propsとして component='p'を渡してパラグラフ要素して使用。

動作の確認で下記の左側のように'aaaa'のように入力していたため、枠に収まらない理由がわからなかった...

しかし、日本語や'Hello world'のようにちゃんと文字を入力すれば普通に改行してくれて、枠内に収まってくれた...(勉強不足)

スクリーンショット 2022-02-11 15.13.42.png

すべての文字を表示したくない場合 nowrap を使う

<Typography nowrap component='p'>{message}</Typography>

nowrapを使うと 文字列の最後に'...'と表示できる。
しかも枠の大きさに合わせて'...'を表示してくれるので使い勝手はよさそう。

*ただ、文字数を指定しないと下記の写真のように1行のみしか表示されないので注意が必要。

スクリーンショット 2022-02-11 15.23.17.png

2
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
2
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?