LoginSignup
0
0

More than 1 year has passed since last update.

CSS 中央寄せ

Posted at

CSSで要素を中央に持ってきたいとき、
簡単なプロパティでは

コード

margin:0 auto;

もしくは

コード

text-align:center;

があります。この違いとしては
「margin:0 auto;」はブロック要素に適用されるのに対し、
「text-align:center;」はインライン要素、インラインブロック要素に対して適用されます。
ただしインライン要素に対してのmargin:auto;が適用できないのであって、
インライン要素にmargin:pixel値;は適用できるので注意です。

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