LoginSignup
0
0

CSS Position 属性のまとめ

Posted at

positionについてまとめ!

position 種類

  • static
  • absolute
  • relative
  • fixed

static

  • 何も指定しなければ自動でstatic 扱い
  • top, left などを指定しても効かない
  • z-index を指定しても効かない

relative

  • top, left などを指定できる
  • z-index を指定できる
  • z-index が効かなければ、relative にする

absolute

  • 親要素を基準とする
  • 基準としたい親要素にはrelativeを使用する
  • relativeがない場合は、bodyタグが基準となる
  • top, left を指定できる
  • z-indexを指定できる

fixed

  • ウインドウ全体を基準とする
  • top, left を指定できる
  • z-indexを指定できる
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