LoginSignup
0
0

More than 3 years have passed since last update.

margin ;0 auto; と text-align :center; の違い

Last updated at Posted at 2021-03-08

css

いまいち違いがわからなかったので、メモを残します。

【text-alignだけ】

stylesheet.css
text-align: center;

text-alignだけaa.png

h1が微妙に左側に傾いてる



【margin 0 autoもtext-alignも両方】

stylesheet.css
margin: 0 auto;
text-align: center;

両aaa方.png

文字が中心でさらに枠組み自体が真ん中になっている



【margin 0 autoだけ】

stylesheet.css
margin: 0 auto;

marginだけaa.png

文字は左側だが枠は真ん中

【結論】

margin 0 autoは枠そのものを真ん中に寄せる
text-align centerは文字の位置を枠の中の中心に寄せる

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