0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

CSS 中央揃え

0
Last updated at Posted at 2025-06-10

要素の中央揃え

中央揃えにしたい要素に注目した、

  • ブロック要素だったら、幅を設定したうえでmargin:0を使用する。
  • テキストや、画像などのインラインボックス要素だったら囲っているブロック要素にtext-algin:centerをつける。

下記のポイントをおさえましょう。

  • margin: 0 autotext-align: centerブロックボックスにつける
  • margin: 0 autoそのブロックボックス自体を中央揃えにする
  • text-align: center は そのブロックボックスのなかにあるテキストや画像を中央揃えにする

margin:0 auto

  • ブロック要素のみ有効
  • を設定する必要がある
margin: 0 auto;

image.png

text-align:center

  • ブロック要素のみ有効
  • ブロック要素の中にあるテキストや画像などのインラインボックスが中央揃えになる

image.png

=

0
1
1

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?