1
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.

justify-contentが効かない

Posted at

下記サイトで模写コーディング中、justify-contentが効かなかったので色々調べて解決するまでの備忘録です。

https://zero-plus.io/media/css-justify-content/
justify-contentが効かない原因についてこちらのサイトにまとめられていたので引用します。

以下は justify-content が効かないおもな原因です。

① display: flex; の指定を忘れている
② 子要素に margin: auto; を指定している
③ before・after を使用している
④ 子要素のテキストを中央寄せにしようとしている

上記の原因に当てはまっていないか自分が書いたコードとにらめっこしてしても原因がわからない...

ディベロッパーツールで見本のコードと見比べて何が違うか、調べてみたところ...

原因
入力したテキストが長くて横に伸びていた。
スクリーンショット 2022-12-16 12.57.41.png

解決方法
テキストに<br>を入れて改行したら見本通りになりました!
スクリーンショット 2022-12-16 12.56.10.png

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