LoginSignup
0
0

More than 3 years have passed since last update.

【メモ】 HTML・CSS インライン要素&ブロック要素違い

Last updated at Posted at 2020-11-11

ブロック要素

<div>など
すべて縦並び
横幅、縦幅の指定ができる
margin: 0 auto
→中央揃えになる

インライン要素

<span>など
全て横並び
横幅、縦幅の指定ができない
display: block
→ブロック要素のような振る舞いが可能になる
display: inline-block
→高さは指定されるが、横並び
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